-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "simple-sentinel",
"version": "0.2.0",
"description": "An easy to use redis-sentinel client for Node.js",
"contributors": [
"Raymond Myers <[email protected]>",
"Chrissy Donovan <[email protected]>"
],
"scripts": {
"test": "mocha -R spec --check-leaks tests/*_test.js",
"nyan": "mocha -R nyan --check-leaks tests/*_test.js",
"coverage": "istanbul cover _mocha -- -R spec tests/*_test.js"
},
"main": "src/index.js",
"engine": "node >= 0.8.0",
"repository": {
"type": "git",
"url": "https://github.com/Vungle/simple-sentinel"
},
"bugs": {
"url": "https://github.com/Vungle/simple-sentinel/issues"
},
"keywords": [
"redis",
"sentinel",
"redis-sentinel"
],
"dependencies": {
"async": "1.3.0",
"lodash": "3.10.0",
"redis": "0.12.1"
},
"devDependencies": {
"mocha": "2.2.5",
"expect": "1.6.0",
"istanbul": "0.3.5",
"random-seed": "0.2.0",
"boris": "0.12.6",
"temp": "0.8.2"
},
"license": "MIT"
}