-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "zkplus",
"description": "The ZooKeeper API you always wanted",
"version": "0.4.0",
"homepage": "http://mcavage.github.com/node-zkplus",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-zkplus.git"
},
"author": "Mark Cavage <mcavage@gmail.com>",
"contributors": [
"Anthony Barre",
"Trent Mick",
"Vincent Voyer",
"Yunong Xiao"
],
"main": "./lib/index.js",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"assert-plus": "0.1.5",
"bunyan": "1.8.12",
"node-uuid": "1.4.1",
"once": "1.3.0",
"vasync": "1.5.0",
"node-zookeeper-client": "0.2.1"
},
"devDependencies": {
"faucet": "0.0.1",
"istanbul": "0.2.11",
"tape": "2.13.3"
},
"scripts": {
"report": "./node_modules/.bin/istanbul report --html && open ./coverage/lcov-report/index.html",
"test": "./node_modules/.bin/istanbul test test/test.js | ./node_modules/.bin/faucet"
}
}