-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"private": true,
"version": "8.1.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-typescript": "^12.3.0",
"@types/connect": "^3.4.38",
"@types/node": "^25.5.0",
"@types/node-zopfli": "^2.0.5",
"@types/supertest": "^7.2.0",
"connect": "^3.7.0",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"node-zopfli": "^2.1.4",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.4.0",
"supertest": "^7.2.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"scripts": {
"test:eslint": "eslint --cache .",
"test:node": "tsx --test test/*.ts",
"test:prettier": "prettier --check .",
"test:typescript": "tsc --noEmit",
"format": "prettier --write .",
"clean": "node ./bin/clean.mjs",
"build": "tsx ./build/build-package.ts",
"test": "run-p --aggregate-output test:*"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
}
}