-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "sol-validation",
"private": true,
"type": "module",
"scripts": {
"test": "node --test tests/web/*.test.mjs",
"test:web": "node --test tests/web/*.test.mjs",
"validate:governance": "python tools/validate_sdlc.py",
"validate:ux": "python tools/validate_ux_contract.py",
"coverage:node": "node tools/collect_node_coverage.mjs",
"coverage:browser": "node tools/browser_validation.mjs",
"coverage:merge": "node tools/merge_web_coverage.mjs"
},
"devDependencies": {
"c8": "12.0.0",
"istanbul-lib-coverage": "3.2.2",
"istanbul-lib-report": "3.0.1",
"istanbul-reports": "3.2.0",
"pngjs": "7.0.0",
"puppeteer-core": "25.4.0",
"typescript": "5.9.3",
"v8-to-istanbul": "9.3.0"
}
}