-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 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
{
"name": "visionflow-site-verification",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "cd website && ./build.sh",
"check:sidecar": "node scripts/check-cdp-sidecar.mjs",
"check:assets": "node scripts/website-assets.mjs verify",
"check:augmentation": "node scripts/check-augmentation-citations.cjs",
"probe:forum": "node scripts/live-forum-probe.mjs",
"health:collect": "node scripts/estate-health.mjs collect",
"health:check": "node scripts/estate-health.mjs check",
"test:site": "playwright test",
"test:a11y": "playwright test tests/site.spec.js --grep @a11y",
"test:perf": "playwright test tests/site.spec.js --grep @perf",
"test:gates": "bash tests/gates/run-all.sh",
"test:browser": "node scripts/website-browser-check.mjs",
"verify": "npm run build && npm run check:assets && npm run test:gates && npm run check:sidecar && npm run test:site"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.53.0"
}
}