-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
76 lines (76 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "q-connection",
"version": "0.6.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/)",
"Zarutian <[email protected]> (http://github.com/zarutian/)"
],
"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.6",
"collections": "~0.1.24"
},
"devDependencies": {
"jasmine-node": "~1.7.0",
"cover": "*",
"opener": "*",
"mocha": "~1.11.0",
"mocha-as-promised": "~1.4.0"
},
"scripts": {
"test": "jasmine-node spec",
"mocha": "mocha test",
"cover": "cover run jasmine-node spec && cover report html && opener cover_html/index.html"
},
"testling": {
"harness": "mocha",
"files": "test/*-test.js",
"browsers": [
"iexplore/6.0",
"iexplore/7.0",
"iexplore/8.0",
"iexplore/9.0",
"iexplore/10.0",
"chrome/25.0",
"firefox/19.0",
"firefox/nightly",
"opera/11.5",
"opera/11.6",
"opera/12.0",
"opera/next",
"safari/4.0",
"safari/5.0.5",
"safari/5.1",
"safari/6.0",
"chrome/canary",
"iphone/6.0",
"ipad/6.0",
"android-browser/4.2"
]
},
"repository": {
"type": "git",
"url": "git://github.com/kriskowal/q-connection.git"
},
"engines": {
"node": ">=0.8.0",
"jetpack": ">=0.9.0"
}
}