forked from dantman/express-cache-response-directive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.23 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": "express-cache-response-directive",
"version": "0.2.0",
"license": "MIT",
"description": "ExpressJS middleware that gives Response objects an intuitive .cacheControl method to set Cache-Control headers.",
"keywords": [
"expressjs",
"middleware",
"expires",
"cache control"
],
"author": {
"name": "Daniel Friesen",
"url": "http://danielfriesen.name",
"email": "[email protected]"
},
"homepage": "https://github.com/dantman/express-cache-response-directive",
"repository": {
"type": "git",
"url": "https://github.com/dantman/express-cache-response-directive.git"
},
"bugs": {
"url": "https://github.com/dantman/express-cache-response-directive/issues"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"dependencies": {
"debug": "^1.0.3",
"js-quantities": "^1.4.1"
},
"devDependencies": {
"chai": "^1.9.1",
"coveralls": "^2.11.1",
"express": "^4.6.1",
"istanbul": "^0.3.0",
"mocha": "^1.20.1",
"mocha-jshint": "0.0.7",
"mocha-lcov-reporter": "0.0.1",
"supertest": "^0.13.0"
}
}