-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 911 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
{
"name": "leader",
"version": "1.0.1",
"description": "zookeeper based election",
"author": {
"name": "Yunong J Xiao",
"email": "[email protected]",
"url": "yunong.ca"
},
"engines": {
"node": ">=0.10"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "http://github.com/yunong/node-leader.git"
},
"dependencies": {
"assert-plus": "0.1.5",
"bunyan": "0.22.3",
"node-zookeeper-client": "0.2.1",
"once": "1.3.0",
"underscore": "1.6.0",
"vasync": "1.4.3",
"verror": "1.4.0"
},
"devDependencies": {
"nodeunit": "git://github.com/yunong/nodeunit.git#4b1bf5",
"uuid": "1.4.1"
},
"main": "./election.js",
"scripts": {
"pretest": "./lint.sh",
"test": "./node_modules/.bin/nodeunit ./test/*.test.js"
}
}