forked from helmetjs/helmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 Bytes
/
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
{
"private": true,
"version": "7.0.0",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/connect": "^3.4.37",
"@types/jest": "^29.5.6",
"@types/node-zopfli": "^2.0.4",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"connect": "^3.7.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"node-zopfli": "^2.1.4",
"prettier": "^3.0.3",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"scripts": {
"pretest": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"clean": "node ./bin/clean.mjs",
"build": "tsx ./build/build-package.ts",
"test": "jest"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
}
}