-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
109 lines (109 loc) · 2.82 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@skyring/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]>",
"Eric Satterwhite <[email protected]>"
],
"version": "11.1.1",
"engines": {
"node": ">=8.0"
},
"homepage": "https://github.com/esatterwhite/skyring/packages/ringpop#readme",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/esatterwhite/skyring.git",
"directory": "packages/ringpop"
},
"bin": {
"ringpop": "./main.js"
},
"scripts": {
"test": "tap",
"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",
"cover": "istanbul cover --print detail --report html test/index.js | faucet",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"view-cover": "opn coverage/index.html"
},
"dependencies": {
"@esatterwhite/micromock": "^1.1.0",
"body": "^5.0.0",
"error": "^5.0.0",
"farmhash": "^3.0.0",
"metrics": "^0.1.8",
"rm": "^0.1.8",
"toobusy-js": "^0.5.0",
"underscore": "^1.5.2",
"uuid": "^7.0.2"
},
"devDependencies": {
"@codedependant/test-core": "^1.0.0",
"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",
"eslint": "^7.8.1",
"eslint-config-codedependant": "^1.0.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",
"leaked-handles": "^5.1.0",
"opn": "^1.0.1",
"pre-commit": "^0.0.9",
"tap": "^14.10.8",
"tape": "^3.0.3",
"tape-cluster": "2.1.0",
"tchannel": "^4.0.0",
"tcurl": "^4.23.1",
"timer-shim": "^0.3.0",
"tmp": "0.0.31",
"tryit": "^1.0.1",
"winston": "^1.0.1"
},
"pre-commit": [
"test"
],
"tap": {
"browser": false,
"ts": false,
"esm": false,
"jsx": false,
"timeout": 45,
"lines": 90,
"functions": 90,
"branches": 75,
"statements": 90,
"check-coverage": true,
"coverage-report": [
"json",
"html",
"text",
"text-summary"
],
"files": [
"test/integration",
"test/unit"
]
},
"pre-commit.silent": true
}