-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
34 lines (34 loc) · 961 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name" : "signals",
"description" : "Custom Event/Messaging System",
"keywords" : ["js-signals", "signals", "pub/sub", "event", "publish", "subscribe", "observer"],
"homepage" : "http://millermedeiros.github.com/js-signals/",
"version" : "1.0.0",
"author" : {
"name" : "Miller Medeiros",
"url" : "http://blog.millermedeiros.com/"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/millermedeiros/js-signals.git"
},
"main" : "dist/signals.js",
"bugs" : {
"url" : "https://github.com/millermedeiros/js-signals/issues"
},
"devDependencies" : {
"jasmine-node" : "~1.0"
},
"scripts" : {
"test" : "jasmine-node test/spec"
},
"directories" : {
"doc" : "./dist/docs"
},
"licenses" : [
{
"type" : "MIT",
"url" : "http://www.opensource.org/licenses/mit-license.php"
}
]
}