zookeeper
Version:
apache zookeeper client (zookeeper async API v3.5.x - v3.8.x)
68 lines (67 loc) • 2.19 kB
JSON
{
"name": "zookeeper",
"description": "apache zookeeper client (zookeeper async API v3.5.x - v3.8.x)",
"version": "7.2.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",
"nan": "2.x",
"node-gyp-build": "^4.2.3",
"shelljs": "0.10.x"
},
"devDependencies": {
"@types/node": "24.x",
"ava": "6.x",
"eslint": "8.x",
"eslint-config-airbnb-base": "15.x",
"eslint-plugin-import": "2.x",
"prebuildify": "6.0.1",
"sinon": "21.x",
"typescript": "5.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": "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
}
}