-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) 路 1.42 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) 路 1.42 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
47
{
"name": "network-overrides-devtools",
"version": "2.2.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"lint": "eslint src",
"check": "npm run lint && npm test",
"test": "npm run build && node --test --test-isolation=none tests/*.test.mjs",
"smoke": "npm run build && node scripts/smoke.mjs",
"store:screenshots": "npm run build && node scripts/capture-store-screenshots.mjs",
"coverage": "npm run build && c8 --reporter=text --reporter=lcov --reporter=html --report-dir coverage node --test --test-isolation=none tests/*.test.mjs",
"ci:test": "npm run coverage",
"package:store": "npm run clean && npm run build && node scripts/package-store.mjs",
"prepare": "husky"
},
"c8": {
"all": true,
"exclude": [
"tests/**/*.mjs"
],
"include": [
"dist/**/*.js"
],
"report-dir": "coverage"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^10.0.1",
"@types/chrome": "^0.0.178",
"c8": "^11.0.0",
"eslint": "^10.6.0",
"husky": "^9.1.5",
"jsdom": "^29.0.1",
"lint-staged": "^15.2.10",
"playwright": "^1.61.1",
"prettier": "^3.3.3",
"typescript": "^5.5.0",
"typescript-eslint": "^8.63.0"
}
}