forked from uber-node/ringpop-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ringpop",
"description": "Scalable, fault-tolerant application-layer sharding",
"contributors": [
"Alex Hauser <ahauser@uber.com>",
"Rui Hu <ruihu.pvt@gmail.com>",
"Bob Nugmanov <bob.nugmanov@gmail.com>",
"Matt Ranney <mranney@uber.com>",
"Jeff Wolski <wolski@uber.com>",
"Jake Verbaten <raynos2@gmail.com>",
"Mark Yen <mark@uber.com>"
],
"version": "10.3.0",
"repository": "git://github.com/uber/ringpop.git",
"bin": {
"ringpop": "./main.js"
},
"scripts": {
"test": "npm run jshint && node test/index.js",
"add-licence": "uber-licence",
"check-licence": "uber-licence --dry",
"cover": "istanbul cover --print detail --report html test/index.js",
"jshint": "jshint --verbose *.js lib/*.js lib/request-proxy/*.js lib/swim/*.js scripts/*.js",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"view-cover": "opn coverage/index.html"
},
"dependencies": {
"body": "^5.0.0",
"error": "^5.0.0",
"farmhash": "^0.2.0",
"metrics": "^0.1.8",
"node-uuid": "^1.4.3",
"readable-stream": "^1.0.33",
"uber-hammock": "^1.0.0",
"underscore": "^1.5.2"
},
"devDependencies": {
"after": "^0.8.1",
"async": "^0.9.0",
"benchmark": "^1.0.0",
"cli-color": "^0.3.2",
"commander": "^2.6.0",
"coveralls": "^2.11.2",
"debug-logtron": "^2.1.0",
"format-stack": "4.1.0",
"glob": "^4.3.1",
"istanbul": "^0.3.5",
"itape": "^1.5.0",
"jshint": "^2.5.6",
"leaked-handles": "^5.1.0",
"opn": "^1.0.1",
"pre-commit": "^0.0.9",
"tape": "^3.0.3",
"tape-cluster": "2.1.0",
"tchannel": "^2.5.1",
"time-mock": "^0.1.2",
"tryit": "^1.0.1",
"uber-licence": "^1.1.0"
},
"pre-commit": [
"check-licence",
"test"
],
"pre-commit.silent": true,
"itape": {
"trace": {
"debuglog": [
"ringpop",
"tchannel"
],
"formatStack": true,
"leakedHandles": {
"fullStack": false
}
}
}
}