-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "upring-pubsub",
"version": "0.3.0",
"description": "PubSub system built on top of upring",
"main": "pubsub.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-pubsub.git"
},
"keywords": [
"upring",
"gossip",
"membership",
"publish",
"subscribe",
"pubsub",
"tentacoli",
"consistent",
"hashring"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/upringjs/upring-pubsub/issues"
},
"homepage": "https://github.com/upringjs/upring-pubsub#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"farmhash": "^2.0.4",
"pre-commit": "^1.2.2",
"safe-buffer": "^5.1.1",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap": "^11.0.0",
"upring": "^0.22.0"
},
"dependencies": {
"end-of-stream": "^1.4.0",
"hyperid": "^1.2.0",
"mqemitter": "^2.2.0",
"pump": "^2.0.0",
"qlobber": "^2.0.0",
"readable-stream": "^2.3.3",
"steed": "^1.1.3"
}
}