forked from mahall/sharded-redis-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 943 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
{
"name": "new-sharded-redis-client",
"version": "1.1.0",
"description": "A client for application side sharding of redis",
"main": "ShardedRedisClient.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "node test/tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Tinder/sharded-redis-client.git"
},
"author": "Tinder Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tinder/sharded-redis-client/issues"
},
"homepage": "https://github.com/Tinder/sharded-redis-client",
"dependencies": {
"async": "2.6.0",
"bluebird": "3.5.1",
"brakes": "2.6.0",
"circuit-breaker": "git://github.com/Tinder/circuit-breaker",
"hiredis": "0.5.0",
"lodash": "4.17.4",
"redis": "2.8.0"
},
"devDependencies": {
"jasmine": "^2.4.1",
"jasmine-expect": "^2.0.2",
"jasmine-spec-reporter": "^2.4.0",
"proxyquire": "^1.7.4"
}
}