-
Notifications
You must be signed in to change notification settings - Fork 445
/
package.json
executable file
·59 lines (59 loc) · 1.21 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
{
"name": "eventproxy",
"description": "An implementation of task/event based asynchronous pattern.",
"homepage": "https://github.com/JacksonTian/eventproxy",
"keywords": [
"event",
"task-base",
"event machine",
"nested callback terminator"
],
"author": "Jackson Tian <[email protected]>",
"contributors": [
"Jackson Tian <[email protected]>",
"fengmk2 <[email protected]>"
],
"dependencies": {
"debug": "0.7.4"
},
"devDependencies": {
"autod": "*",
"blanket": "*",
"chai": "1.9.0",
"component": "*",
"contributors": "*",
"eventproxy": "0.2.7",
"growl": "1.7.0",
"jade": "1.3.0",
"mocha": "1.17.1",
"mocha-phantomjs": "*",
"pedding": "0.0.3",
"totoro": "*",
"cov": "*"
},
"scripts": {
"test": "make test-all"
},
"config": {
"blanket": {
"pattern": "eventproxy/lib",
"data-cover-flags": {
"debug": false
}
},
"travis-cov": {
"threshold": 97
}
},
"repository": {
"type": "git",
"url": "git://github.com/JacksonTian/eventproxy.git"
},
"version": "0.3.1",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"license": "MIT"
}