-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "upring-kv",
"version": "0.5.0",
"description": "Key-Value store plugin for UpRing",
"main": "kv.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upringjs/upring-kv.git"
},
"keywords": [
"upring",
"consistent",
"hashring",
"key",
"value"
],
"author": "Matteo Collina <[email protected]>",
"contributors": [
{
"name": "Tomas Della Vedova",
"url": "http://delved.org"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/upringjs/upring-kv/issues"
},
"homepage": "https://github.com/upringjs/upring-kv#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap": "^11.0.0",
"upring": "^0.22.0"
},
"dependencies": {
"clone": "^2.1.1",
"end-of-stream": "^1.4.0",
"never-ending-stream": "^2.0.0",
"readable-stream": "^2.3.3"
}
}