You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
952 B
41 lines
952 B
{
|
|
"name": "node-zookeeper-client",
|
|
"version": "0.2.3",
|
|
"description": "A pure Javascript ZooKeeper client for Node.js.",
|
|
"author": "Alex Guan <alex.guan@gmail.com>",
|
|
"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": "istanbul cover _mocha --recursive test/*"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.6.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": "^3.2.0",
|
|
"istanbul": "~0.1.34",
|
|
"mocha": "~1.9.0"
|
|
}
|
|
}
|
|
|