forked from yfinkelstein/node-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API >= 3.4.0)",
"version": "4.0.3",
"author": "Yuri Finkelstein <yurif2003@yahoo.com>",
"license": "MIT",
"contributors": [
"Yuri Finkelstein <yurif2003@yahoo.com>",
"Woody Anderson <woody.anderson@gmail.com>",
"Mark Cavage <mcavage@gmail.com>",
"Dave Dopson <ddopson@gmail.com>",
"David Trejo <david.daniel.trejo@gmail.com>",
"Pooya Karimian <pkarimian@sencha.com>",
"Jakub Lekstan <kuebzky@gmail.com>",
"Matt Lavin <matt.lavin@gmail.com>",
"Roy Cheng <roy.b.cheng@newegg.com>",
"David Vujic (https://github.com/DavidVujic)"
],
"repository": {
"type": "git",
"url": "https://github.com/yfinkelstein/node-zookeeper"
},
"keywords": [
"apache",
"zookeeper",
"client"
],
"dependencies": {
"async": "2.6.x",
"decompress": "4.2.x",
"decompress-targz": "4.1.x",
"lodash": "4.x",
"nan": "2.x",
"shelljs": "0.8.x"
},
"devDependencies": {
"proxyquire": "2.x",
"tap-spec": "5.x",
"tape": "4.x",
"log4js": "4.x",
"webworker": "0.x",
"eslint": "5.x",
"eslint-config-airbnb-base": "13.x",
"eslint-plugin-import": "2.x"
},
"main": "lib/index",
"scripts": {
"build": "node-gyp configure build",
"install": "node ./scripts/prepublish.js && npm run build",
"lint": "eslint .",
"integrationtest": "pushd test; ./test; popd",
"test": "npm run lint && tape ./tests/**/*.js | tap-spec"
},
"engines": {
"node": ">=8.9.4"
}
}