-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "upring",
"version": "0.21.0",
"description": "application-level sharding on node.js streams",
"main": "upring.js",
"scripts": {
"test": "standard | snazzy && tap test/*.test.js",
"coverage": "tap --cov --coverage-report=html test/*.test.js",
"coveralls": "tap test/*test.js --cov --coverage-report=text-lcov | coveralls"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/upringjs/upring.git"
},
"keywords": [
"ring",
"hashring",
"consistent",
"hash",
"swim",
"gossip",
"streams"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/upringjs/upring/issues"
},
"homepage": "https://github.com/upringjs/upring#readme",
"devDependencies": {
"concat-stream": "^1.6.0",
"coveralls": "^3.0.0",
"farmhash": "^2.0.4",
"flush-write-stream": "^1.0.2",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap": "^10.7.3",
"then-sleep": "^1.0.1"
},
"dependencies": {
"ajv": "^5.4.0",
"avvio": "^3.2.0",
"bloomrun": "^4.0.0",
"end-of-stream": "^1.4.0",
"fastzalgo": "^1.0.0",
"from2": "^2.3.0",
"functional-red-black-tree": "^1.0.1",
"lru-cache": "^4.1.1",
"network-address": "^1.1.2",
"pino": "^4.10.2",
"pump": "^1.0.3",
"swim-hashring": "^0.7.0",
"tentacoli": "^1.0.0",
"tinysonic": "^1.3.0",
"util.promisify": "^1.0.0"
}
}