-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
43
{
"name": "distribucache-redis-store",
"version": "6.0.2",
"description": "Redis-backed Distribucache Store",
"keywords": [
"distribucache",
"cache",
"redis"
],
"repository": {
"type": "git",
"url": "git://github.com/dowjones/distribucache-redis-store.git"
},
"author": "nemtsov@gmail.com",
"main": "./lib",
"scripts": {
"prepublish": "babel --out-dir lib src",
"lint": "eslint src test",
"test": "sh -c 'npm run lint && npm run test-cover && npm run test-cover-check'",
"test-cover": "istanbul cover _mocha -- -r should --recursive --require babel/register",
"test-cover-check": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"test-watch": "mocha -G -r should --recursive -w -R min -t 200 --require babel/register"
},
"dependencies": {
"babel-runtime": "^5.8.25",
"common-errors": "^0.4.18",
"ioredis": "^1.9.0",
"joi": "^6.0.8",
"lodash": "4.17.20",
"redis-lockr": "0.1.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"eslint": "^1.5.1",
"istanbul": "^0.3.20",
"mocha": "8.2.1",
"proxyquire": "^1.7.2",
"require-directory": "^2.1.0",
"should": "^7.1.0",
"sinon": "^1.17.0"
}
}