-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
45
46
47
48
{
"name": "crisp-http-cache",
"version": "0.3.2",
"description": "Middleware providing a crispy fresh cache for HTTP responses. ",
"main": "main.js",
"scripts": {
"test": "mocha ./test --recursive",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/four43/node-crisp-http-cache.git"
},
"keywords": [
"cache",
"http",
"middleware",
"tested",
"fresh",
"stale",
"crisp-cache"
],
"author": "Seth Miller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/four43/node-crisp-http-cache/issues"
},
"homepage": "https://github.com/four43/node-crisp-http-cache#readme",
"dependencies": {
"crisp-cache": "^1.1.0",
"debug": "^2.2.0",
"on-finished": "^2.3.0",
"parse-cache-control": "^1.0.1"
},
"devDependencies": {
"accepts": "^1.3.0",
"async": "^2.0.0-rc.3",
"coveralls": "^2.11.2",
"express": "^4.13.3",
"istanbul": "^0.3.18",
"mocha": "^2.1.0",
"mocha-lcov-reporter": "0.0.2",
"rewire": "^2.5.1",
"sinon": "^1.17.4",
"supertest": "^1.2.0"
}
}