-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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": "1.1.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": "daniel@nadir-seen-fire.com"
},
"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": "^2.6.3",
"js-quantities": "^1.6.6"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"express": "^4.15.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-jshint": "^2.3.1",
"mocha-lcov-reporter": "^1.3.0",
"supertest": "^3.0.0"
}
}