forked from zackurben/event-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 829 Bytes
/
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
{
"name": "event-chain",
"version": "0.0.1",
"description": "A simple way to chain events and control program flow asynchronously.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zackurben/event-chain"
},
"keywords": [
"event",
"event-chain",
"event chain",
"chain events",
"node",
"node.js"
],
"author": "Zack Urben <[email protected]> (http://zackurben.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zackurben/event-chain/issues"
},
"homepage": "https://github.com/zackurben/event-chain",
"dependencies": {
"debug": "^2.2.0",
"lodash.uniq": "^3.2.2"
},
"devDependencies": {
"mocha": "^2.2.5"
}
}