-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.24 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
44
{
"name": "distribucache",
"version": "6.1.0",
"description": "Store-backed Automatically Populating Cache",
"keywords": [
"cache",
"distributed",
"distributed-cache"
],
"repository": {
"type": "git",
"url": "git://github.com/dowjones/distribucache.git"
},
"author": "[email protected]",
"main": "./lib",
"scripts": {
"test": "sh -c 'npm run lint && npm run test-cover && istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100'",
"lint": "eslint examples/ lib/ test/",
"test-cover": "istanbul cover _mocha -- -r should --recursive",
"test-watch": "mocha -r should --recursive -w -R min -t 20"
},
"dependencies": {
"async": "^1.3.0",
"common-errors": "^0.5.1",
"es6-promisify": "^3.0.0",
"eventemitter2": "^0.4.14",
"is-promise": "^2.1.0",
"joi": "^6.5.0",
"lodash": "^3.10.0",
"require-directory": "^2.1.1"
},
"devDependencies": {
"distribucache-console-logger": "^1.0.2",
"distribucache-memory-store": "^5.0.0",
"distribucache-redis-store": "^6.0.1",
"es6-promise": "^3.0.2",
"eslint": "^0.24.0",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"proxyquire": "^1.6.0",
"should": "^7.0.1",
"sinon": "^1.15.4"
}
}