-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 861 Bytes
/
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
{
"name": "ared",
"description": "Redis clustering based on Rendezvous Hashing (HRW)",
"keywords": [
"redis",
"cluster",
"proxy",
"scaling",
"Rendezvous Hashing",
"HRW"
],
"author": "Draining Sun",
"license": "MIT",
"version": "0.2.2",
"main": "libs",
"engines": {
"node": ">=6"
},
"dependencies": {
"murmurhash-native": "3.2.1",
"redis": "2.8.0"
},
"devDependencies": {
"async": "2.6.0",
"benchmark": "2.1.4",
"eslint": "4.11.0",
"mocha": "4.0.1",
"should": "13.1.3"
},
"scripts": {
"lint": "eslint ./ || true",
"test": "mocha --timeout 5000 --exit tests"
},
"repository": {
"type": "git",
"url": "https://github.com/drainingsun/ared.git"
}
}