Merging Vernon's changes with additions to bower.json and adding separate component.json. Fixes #55

This commit is contained in:
ifandelse 2014-01-10 01:23:03 -05:00
parent 558ebaf48b
commit 2e0c6d3d4a
2 changed files with 53 additions and 6 deletions

View file

@ -1,8 +1,31 @@
{
"name": "postal.js",
"version": "0.8.9",
"main": ["lib/postal.min.js", "lib/postal.js"],
"dependencies": {
"underscore": "~1.3.0"
}
"name": "postal.js",
"description": "Client-side messaging library.",
"homepage": "https://github.com/postaljs/postal.js",
"keywords": [
"pub/sub",
"pub",
"sub",
"messaging",
"message",
"bus",
"event",
"eventing",
"mediator",
"broker",
"envelope"
],
"author": "Jim Cowart <jim@ifandelse.com>",
"repository": {
"type": "git",
"url": "git://github.com/postaljs/postal.js.git"
},
"version": "0.8.9",
"main": [
"lib/postal.min.js",
"lib/postal.js"
],
"dependencies": {
"underscore": "~1.3.0"
}
}

24
component.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "postal.js",
"repo": "postaljs/postal.js",
"description": "Client-side messaging library",
"version": "0.8.9",
"keywords": [
"pub/sub",
"pub",
"sub",
"messaging",
"message",
"bus",
"event",
"eventing",
"mediator",
"broker",
"envelope"
],
"dependencies": {
"component/underscore": "*"
},
"scripts": ["lib/postal.min.js", "lib/postal.js"],
"license": "MIT"
}