-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.06 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": "hpkp",
"author": "Adam Baldwin <[email protected]> (https://evilpacket.net)",
"license": "MIT",
"contributors": [
"Evan Hahn <[email protected]> (https://evanhahn.com)",
"Tom Delmas <[email protected]> (https://tdelmas.ovh)"
],
"description": "HTTP Public Key Pinning (HPKP) middleware",
"version": "3.0.0",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"hpkp",
"public key pinning"
],
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/hpkp.git"
},
"bugs": "https://github.com/helmetjs/hpkp/issues",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"pretest": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"test": "node --test"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"connect": "^3.7.0",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
}
}