forked from alexguan/node-zookeeper-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 968 Bytes
/
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
{
"name": "node-zookeeper-client",
"version": "0.2.1",
"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": "jslint --node --sloppy 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": {
"mocha": "~1.9.0",
"chai": "~1.5.0",
"istanbul": "~0.1.34",
"jslint": "~0.1.9"
}
}