-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "persistence",
"version": "2.1.0",
"description": "An abstraction library for redis and sentinel connection management",
"main": "lib/index.js",
"scripts": {
"check-modules": "if [ -z \"$SKIP_PACKAGE_CHECK\" ] && [ ./package.json -nt ./node_modules ]; then echo 'Your node_modules are out of date. Please run \"npm update\"' && exit 1; fi",
"lint": "standard",
"pretest": "npm run check-modules",
"test-redis": "ls ./test/*.test.js | xargs -n 1 -t -I {} sh -c 'TEST=\"{}\" npm run test-one'",
"test": "npm run test-redis",
"test-one": "mocha --reporter spec --slow 2000ms --timeout 4000ms --bail \"$TEST\" --exit",
"test-one-solo": "mocha --reporter spec --slow 2000ms --timeout 4000ms --bail --exit"
},
"standard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "https://github.com/zendesk/persistence.git"
},
"license": "MIT",
"devDependencies": {
"callback_tracker": "0.1.0",
"minilog": "3.1.0",
"mocha": "^9.2.1",
"proxyquire": "^2.1.3",
"simple_sentinel": "0.1.8",
"standard": "^16.0.4"
},
"dependencies": {
"ioredis": "^4.28.5"
}
}