-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 857 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
{
"name": "zookeeper-node-shared-lock",
"version": "1.1.0",
"description": "A Node.js implementation of distributed lock using Zookeeper.",
"main": "client.js",
"scripts": {
"test": "mocha -R spec --recursive ./test",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --recursive ./test",
"lint": "eslint ./lib",
"pre-commit": "npm run coverage && npm run lint"
},
"author": {
"email": "[email protected]",
"name": "Alan Ning"
},
"bugs": {
"url": "https://github.com/askldjd/zookeeper-distributed-lock"
},
"license": "ISC",
"dependencies": {
"debug": "^2.2.0",
"eslint": "^2.9.0",
"node-zookeeper-client": "^0.2.2"
},
"devDependencies": {
"async": "^2.0.0-rc.3",
"eslint": "^2.9.0",
"expect": "^1.20.1",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}