-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.2 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": "crisp-cache",
"version": "1.5.4",
"description": "A crispy fresh cache that will try and use updated data where it can, but can use a stale entry if need be.",
"main": "main.js",
"scripts": {
"test": "mocha --expose-gc -R spec ./test/*",
"#comment": "Can't run coverage over memory tests, --expose-gc is not available.",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --grep 'memory' -i ./test/*",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/four43/node-crisp-cache.git"
},
"keywords": [
"cache",
"ttl",
"tested",
"fresh",
"stale",
"expires",
"expired"
],
"author": "Seth Miller <seth@four43.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/four43/node-crisp-cache/issues"
},
"homepage": "https://github.com/four43/node-crisp-cache#readme",
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"async": "^1.4.2",
"coveralls": "^2.11.13",
"istanbul": "^0.3.22",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "0.0.2",
"seed-random": "^2.2.0",
"sinon": "^1.16.1"
}
}