-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
67 lines (67 loc) · 2.14 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
58
59
60
61
62
63
64
65
66
67
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API v3.5.x - v3.8.x)",
"version": "6.2.3",
"author": "Yuri Finkelstein <[email protected]>",
"license": "MIT",
"contributors": [
"Yuri Finkelstein <[email protected]>",
"Woody Anderson <[email protected]>",
"Mark Cavage <[email protected]>",
"Dave Dopson <[email protected]>",
"David Trejo <[email protected]>",
"Pooya Karimian <[email protected]>",
"Jakub Lekstan <[email protected]>",
"Matt Lavin <[email protected]>",
"Roy Cheng <[email protected]>",
"David Vujic (https://github.com/DavidVujic)",
"Jakub Bienkowski (https://github.com/jbienkowski311)",
"Brendan Hack ([email protected])"
],
"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",
"nan": "2.x",
"node-gyp-build": "^4.2.3",
"shelljs": "0.8.x"
},
"devDependencies": {
"@types/node": "17.x",
"ava": "4.0.1",
"eslint": "8.x",
"eslint-config-airbnb-base": "15.x",
"eslint-plugin-import": "2.x",
"prebuildify": "5.0.0",
"sinon": "12.x",
"typescript": "^4.0.5"
},
"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": "ava ./tests/unit/**/*.js",
"test-components": "ava ./tests/components/**/*.js",
"test-integration": "ava ./tests/integration/*.js --",
"type-declarations": "tsc --outFile ./lib/typedeclarations.d.ts"
},
"engines": {
"node": ">=14.15.4"
},
"types": "./lib/typedeclarations.d.ts",
"ava": {
"workerThreads": false
}
}