-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
49 lines (49 loc) · 1.18 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
49
{
"name": "koa-helmet",
"author": "Matt Venables <[email protected]>",
"description": "Security header middleware collection for koa",
"license": "MIT",
"version": "8.0.1",
"main": "lib/koa-helmet.js",
"typings": "./koa-helmet.d.ts",
"scripts": {
"check": "npm run format:check && npm run lint && npm run test && npm run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "vitest",
"typecheck": "tsc --noEmit --pretty"
},
"keywords": [
"security",
"headers",
"koa",
"x-frame-options",
"csp",
"hsts"
],
"repository": {
"url": "https://github.com/venables/koa-helmet"
},
"engines": {
"node": ">= 18.0.0"
},
"peerDependencies": {
"helmet": ">= 6"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/koa": "^2.15.0",
"@types/supertest": "^6.0.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"koa": "^2.13.0",
"prettier": "^3.3.3",
"supertest": "^5.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.4"
}
}