generated from Vanisper/nodejs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
40
41
42
43
44
45
46
{
"name": "https-enable",
"type": "module",
"private": true,
"sideEffects": false,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "npx lefthook install",
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean:deps": "pnpm recursive exec -- rimraf node_modules && rimraf node_modules",
"dev": "pnpm run -r --parallel dev",
"build": "pnpm run -r build",
"test": "vitest",
"test:mkcert": "npm run test -- --project @https-enable/mkcert",
"test:coverage": "npm run test -- --coverage",
"ci:bumpp": "bumpp -r",
"ci:release": "tsx scripts/cli.ts",
"ci:publish": "tsx scripts/publish/cli.ts publish",
"ci:changelog": "tsx scripts/changelog/cli.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@https-enable/tsconfig": "workspace:*",
"@vitest/coverage-v8": "^3.0.6",
"axios": "^1.7.9",
"bumpp": "^10.0.3",
"commitizen": "^4.3.1",
"cz-git": "^1.11.0",
"eslint": "^9.20.0",
"jiti": "^2.4.2",
"lefthook": "^1.10.10",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "5.7.3",
"vitest": "^3.0.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}