forked from kriskowal/q-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "q-connection",
"version": "0.5.2",
"description": "An inter-worker asynchronous promise communication system.",
"homepage": "http://github.com/kriskowal/q-connection/",
"author": "Kris Kowal <[email protected]> (http://github.com/kriskowal/)",
"contributors": [
"Kris Kowal <[email protected]> (http://github.com/kriskowal/)",
"Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com/)"
],
"credits": [
"Mark Miller <[email protected]>"
],
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/kriskowal/q-connection/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/kriskowal/q-connection/raw/master/LICENSE"
}
],
"main": "q-connection.js",
"dependencies": {
"q": "~0.9.2",
"collections": "~0.0.0"
},
"devDependencies": {
"jasmine-node": "*",
"cover": "*",
"opener": "*"
},
"scripts": {
"test": "node_modules/.bin/jasmine-node spec",
"cover": "cover run node_modules/jasmine-node/bin/jasmine-node spec && cover report html && opener cover_html/index.html"
},
"repository": {
"type": "git",
"url": "git://github.com/kriskowal/q-connection.git"
},
"engines": {
"node": ">=0.2.0",
"jetpack": ">=0.9.0"
}
}