-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
28 lines (28 loc) · 971 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
{
"name" : "CompoundSignal",
"description" : "Special Signal that groups multiple Signals together and dispatches after all the group elements are dispatched.",
"keywords" : ["js-signals", "signals", "pub/sub", "event", "publish", "subscribe", "observer", "when", "deferred", "promises"],
"homepage" : "https://github.com/millermedeiros/CompoundSignal/",
"version" : "0.2.0",
"author" : {
"name" : "Miller Medeiros",
"url" : "http://blog.millermedeiros.com/"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/millermedeiros/CompoundSignal.git"
},
"main" : "src/CompoundSignal.js",
"bugs" : {
"url" : "https://github.com/millermedeiros/CompoundSignal/issues"
},
"licenses" : [
{
"type" : "MIT",
"url" : "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependencies" : {
"signals" : ">=0.7.0"
}
}