-
Notifications
You must be signed in to change notification settings - Fork 445
/
package.json
executable file
·51 lines (51 loc) · 1.06 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
{
"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": "^2.6.8"
},
"devDependencies": {
"autod": "*",
"browser": "0.2.6",
"chai": "3.2.0",
"contributors": "*",
"eventproxy": "0.3.4",
"growl": "1.8.1",
"istanbul": "*",
"jade": "1.11.0",
"mocha": "2.3.2",
"pedding": "1.0.0"
},
"scripts": {
"test": "make test-all"
},
"repository": {
"type": "git",
"url": "git://github.com/JacksonTian/eventproxy.git"
},
"version": "1.0.0",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"doc": "doc",
"test": "test"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"lib"
]
}