forked from alexguan/node-zookeeper-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 940 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
38
39
40
41
42
{
"name": "node-zookeeper-client",
"version": "1.1.0",
"description": "A pure Javascript ZooKeeper client for Node.js.",
"author": "Alex Guan <[email protected]>",
"license": "MIT",
"main": "index.js",
"keywords": [
"zookeeper",
"client",
"pure",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/alexguan/node-zookeeper-client"
},
"scripts": {
"pretest": "eslint index.js lib/*.js lib/jute/*.js",
"test": "mocha --recursive --reporter spec test/*",
"coverage": "nyc npm test"
},
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"underscore": "~1.4.4",
"async": "~0.2.7"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/alexguan/node-zookeeper-client/raw/master/LICENSE"
}
],
"devDependencies": {
"chai": "~1.5.0",
"eslint": "^6.4.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
}
}