forked from cilliemalan/node-zookeeper-client-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "node-zookeeper-client-async",
"version": "1.0.0",
"description": "A promises wrapper over https://github.com/alexguan/node-zookeeper-client",
"main": "index.js",
"scripts": {
"test": "mocha -R dot",
"coverage": "nyc --reporter=html --reporter=text mocha -R dot",
"docs": "jsdoc -R README.md -d ./docs/ ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cilliemalan/node-zookeeper-client-async.git"
},
"keywords": [
"zookeeper",
"client",
"javascript",
"async",
"promise"
],
"author": "Cillié Malan",
"license": "MIT",
"bugs": {
"url": "https://github.com/cilliemalan/node-zookeeper-client-async/issues"
},
"homepage": "https://github.com/cilliemalan/node-zookeeper-client-async#readme",
"dependencies": {
"node-zookeeper-client": "^0.2.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"bluebird": "^3.5.0",
"nyc": "^10.3.2"
},
"optionalDependencies": {
"bluebird": "^3.5.0",
"jsdoc": "^3.4.3"
}
}