forked from kriskowal/q
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "q",
"description": "A library for promises (CommonJS/Promises/A,B,D)",
"version": "0.7.1",
"homepage": "http://github.com/kriskowal/q/",
"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)"
],
"bugs": {
"mail": "[email protected]",
"web": "http://github.com/kriskowal/q/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/kriskowal/q/raw/master/LICENSE"
}
],
"main": "q.js",
"repository": {
"type": "git",
"url": "http://github.com/kriskowal/q.git"
},
"engines": {
"node": ">=0.2.0",
"teleport": ">=0.2.0"
},
"dependencies": {
"event-queue": ">=0.0.1"
},
"devDependencies": {
"uglify-js": ">= 0.0.5",
"test": ">=0.3.0"
},
"scripts": {
"prepublish": "uglifyjs -o q.min.js -nc q.js"
},
"overlay": {
"teleport": {
"dependencies": {
"event-queue": ">=0.0.1",
"system": ">=0.0.4"
}
}
},
"directories": {
"test": "./test"
},
"scripts": {
"test": "node test/all.js"
}
}