forked from Vungle/simple-sentinel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
45
{
"name": "redsentinel",
"version": "1.0.0",
"description": "An easy-to-use redis sentinel client that reacts to outages quickly",
"contributors": [
"Raymond Myers <raydog87@gmail.com>",
"Chrissy Donovan <christine.n.donovan@gmail.com>"
],
"scripts": {
"test": "mocha -R spec --check-leaks tests/*_test.js",
"nyan": "mocha -R nyan --check-leaks tests/*_test.js",
"coverage": "nyc npm test",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls"
},
"main": "src/index.js",
"engine": "node >= 0.10.0",
"repository": {
"type": "git",
"url": "https://github.com/raydog/redsentinel"
},
"bugs": {
"url": "https://github.com/raydog/redsentinel/issues"
},
"keywords": [
"redis",
"sentinel",
"redis-sentinel",
"redsentinel"
],
"dependencies": {
"async": "3.2.0",
"lodash": "4.17.21",
"redis": "3.1.2"
},
"devDependencies": {
"boris": "0.13.2",
"coveralls": "3.1.0",
"expect": "26.6.2",
"mocha": "8.4.0",
"nyc": "15.1.0",
"random-seed": "0.3.0",
"temp": "0.9.4"
},
"license": "MIT"
}