This repository has been archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "ringpop-admin",
"description": "An admin tool for ringpop",
"contributors": [
"Jeff Wolski <[email protected]>"
],
"repository": "git://github.com/uber/ringpop-admin.git",
"version": "0.13.0",
"bin": {
"ringpop-admin": "./ringpop-admin.js",
"ringpop-admin-checksums": "./checksums.js",
"ringpop-admin-count": "./count.js",
"ringpop-admin-collisions": "./collisions.js",
"ringpop-admin-dist": "./dist.js",
"ringpop-admin-dump": "./dump.js",
"ringpop-admin-heal": "./heal.js",
"ringpop-admin-join": "./join.js",
"ringpop-admin-leave": "./leave.js",
"ringpop-admin-list": "./list.js",
"ringpop-admin-lookup": "./lookup.js",
"ringpop-admin-partitions": "./partitions.js",
"ringpop-admin-reap": "./reap.js",
"ringpop-admin-status": "./status.js",
"ringpop-admin-top": "./top.js"
},
"scripts": {
"jshint": "jshint --verbose *.js lib/*.js lib/discover/*.js",
"tchannel-v1": "mv node_modules/tchannel node_modules/tchannelv2 && npm install [email protected] && mv node_modules/tchannel node_modules/tchannelv1 && mv node_modules/tchannelv2 node_modules/tchannel",
"test": "cd tests && ./run-tests"
},
"dependencies": {
"async": "^0.9.0",
"cli-color": "^1.0.0",
"cli-table": "^0.3.1",
"commander": "^2.6.0",
"farmhash": "^1.1.1",
"ringpop": "^10.0.0",
"tchannel": "3.6.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"cli-color": "^0.3.3",
"jshint": "^2.5.6",
"pre-commit": "^0.0.9"
},
"pre-commit": [
"jshint",
"test"
]
}