-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "vertex",
"description": "distributed pub/sub using hash rings",
"version": "2.1.0",
"main": "./lib/index",
"scripts": {
"test": "LOG_LEVEL=error mocha test/integration/* test/unit/*",
"test-release": "rm -rf node_modules && rm -f package-lock.json && npm install && LOG_LEVEL=error mocha test/integration/* test/unit/*"
},
"author": "Tenacious and NSOFT",
"license": "MIT",
"keywords": [
"hash-ring",
"pub-sub"
],
"repository": {
"type": "git",
"url": "https://github.com/happner/distributed-pubsub.git"
},
"dependencies": {
"async": "^2.6.0",
"cli": "^1.0.1",
"dag-map": "^2.0.2",
"express": "^4.16.2",
"hashring": "^3.2.0",
"hyperid": "^1.2.0",
"ioredis": "^3.2.2",
"json-socket": "^0.3.0",
"lru-cache": "^4.1.1",
"prompt": "^1.0.0",
"shortid": "^2.2.8",
"sillyname": "^0.1.0",
"uws": "^9.14.0",
"vertex-logger": "^2.3.2",
"vertex-names": "^1.1.4",
"ws": "^4.0.0"
},
"devDependencies": {
"expect.js": "*",
"mocha": "*",
"request": "^2.83.0"
},
"readmeFilename": "README.md"
}