-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1 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": "nocache",
"author": "Adam Baldwin <[email protected]> (https://evilpacket.net)",
"contributors": [
"Evan Hahn <[email protected]> (https://evanhahn.com)"
],
"description": "Middleware to destroy caching",
"version": "4.0.0",
"license": "MIT",
"keywords": [
"express",
"connect",
"nocache",
"caching",
"cache"
],
"homepage": "https://github.com/helmetjs/nocache",
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/nocache.git"
},
"bugs": {
"url": "https://github.com/helmetjs/nocache/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=16.0.0"
},
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"pretest": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"test": "node test"
},
"devDependencies": {
"eslint": "^8.44.0",
"prettier": "^3.0.0"
}
}