forked from yfinkelstein/node-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.36 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.36 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API v3.4.x - v3.6.x)",
"version": "4.9.0",
"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)",
"Jakub Bienkowski (https://github.com/jbienkowski311)",
"Brendan Hack (bhack@ptc.com)"
],
"repository": {
"type": "git",
"url": "https://github.com/yfinkelstein/node-zookeeper"
},
"keywords": [
"apache",
"zookeeper",
"client",
"typescript"
],
"dependencies": {
"async": "3.2.x",
"decompress": "4.2.x",
"decompress-targz": "4.1.x",
"lodash": "4.x",
"nan": "2.x",
"node-gyp-build": "^4.2.3",
"shelljs": "0.8.x"
},
"devDependencies": {
"@types/node": "^14.14.6",
"eslint": "7.x",
"eslint-config-airbnb-base": "14.x",
"eslint-plugin-import": "2.x",
"log4js": "6.x",
"node-gyp": "^7.1.2",
"prebuildify": "^4.1.1",
"proxyquire": "2.x",
"sinon": "9.x",
"tap-spec": "5.x",
"tape": "5.x",
"typescript": "^4.0.5",
"webworker": "0.x"
},
"main": "./lib/index.js",
"scripts": {
"build": "node-gyp-build",
"build-components": "node-gyp configure build --directory=tests/components",
"install": "node ./scripts/prepublish.js && npm run build",
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
"test-components": "npm run build-components && tape ./tests/components/**/*.js | tap-spec",
"test-integration": "node ./tests/integration/index",
"test-unit": "tape ./tests/unit/**/*.js | tap-spec",
"type-declarations": "tsc --outFile ./lib/typedeclarations.d.ts"
},
"engines": {
"node": ">=10.0.0"
},
"types": "./lib/typedeclarations.d.ts"
}