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 146
/
package.json
91 lines (91 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "ringpop",
"description": "Scalable, fault-tolerant application-layer sharding",
"contributors": [
"ben fleis <[email protected]>",
"Alex Hauser <[email protected]>",
"Rui Hu <[email protected]>",
"Bob Nugmanov <[email protected]>",
"Matt Ranney <[email protected]>",
"Jeff Wolski <[email protected]>",
"Jake Verbaten <[email protected]>",
"Mark Yen <[email protected]>"
],
"version": "10.21.0",
"engines": {
"node": "^0.10.32"
},
"repository": "git://github.com/uber/ringpop.git",
"bin": {
"ringpop": "./main.js"
},
"scripts": {
"test": "npm run jshint && node test/index.js | faucet",
"test-debug": "node debug test/index.js",
"test-integration": "node test/integration/index.js | faucet",
"test-shared-integration-tests": "test/run-shared-integration-tests",
"test-unit": "node test/unit/index.js | faucet",
"add-licence": "uber-licence",
"check-licence": "uber-licence --dry",
"cover": "istanbul cover --print detail --report html test/index.js | faucet",
"jshint": "jshint --verbose *.js lib/**/*.js server/**/*.js",
"travis": "npm run jshint && 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": "^1.2.0",
"hammock": "^3.0.1",
"metrics": "^0.1.8",
"node-uuid": "^1.4.3",
"toobusy-js": "^0.5.0",
"underscore": "^1.5.2"
},
"devDependencies": {
"after": "^0.8.1",
"async": "^0.9.0",
"benchmark": "^1.0.0",
"buffer-equal": "0.0.1",
"cli-color": "^0.3.2",
"commander": "^2.6.0",
"coveralls": "^2.11.2",
"debug-logtron": "^2.1.0",
"express": "^4.13.3",
"faucet": "^0.0.1",
"format-stack": "4.1.0",
"glob": "^4.3.1",
"istanbul": "^0.3.5",
"itape": "^1.5.0",
"jshint": "^2.9.2",
"leaked-handles": "^5.1.0",
"opn": "^1.0.1",
"pre-commit": "^0.0.9",
"tape": "^3.0.3",
"tape-cluster": "2.1.0",
"tchannel": "^3.6.13",
"tcurl": "^4.11.1",
"timer-shim": "^0.3.0",
"tmp": "0.0.31",
"tryit": "^1.0.1",
"uber-licence": "^2.1.3",
"winston": "^1.0.1"
},
"pre-commit": [
"check-licence",
"test"
],
"pre-commit.silent": true,
"itape": {
"trace": {
"debuglog": [
"ringpop",
"tchannel"
],
"formatStack": true,
"leakedHandles": {
"fullStack": false
}
}
}
}