-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
38 lines (38 loc) · 915 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": "redis-clustr",
"version": "1.7.0",
"description": "Redis cluster client",
"main": "src/RedisClustr.js",
"keywords": [
"redis",
"cluster",
"database"
],
"bugs": {
"url": "https://github.com/gosquared/redis-clustr/issues"
},
"contributors": [
"GoSquared <[email protected]> (https://www.gosquared.com)",
"James Taylor <[email protected]> (https://www.gosquared.com)",
"Simon Tabor <[email protected]> (http://simontabor.com/)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/gosquared/redis-clustr.git"
},
"scripts": {
"test": "mocha test/test.js",
"benchmark": "node benchmark/"
},
"dependencies": {
"cluster-key-slot": "^1.0.5",
"denque": "^1.1.0",
"redis": "^2.6.0"
},
"devDependencies": {
"benchmark": "^2.1.1",
"js-beautify": "^1.5.10",
"mocha": "^2.3.4"
}
}