-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 874 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 874 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
25
26
27
28
29
30
31
{
"name": "vitistack-docs-accessibility",
"version": "1.0.0",
"description": "Accessibility testing configuration for Vitistack documentation",
"scripts": {
"test:a11y": "npm run test:axe && npm run test:pa11y && npm run test:lighthouse",
"test:axe": "axe http://localhost:8080 --exit --verbose",
"test:pa11y": "pa11y http://localhost:8080",
"test:lighthouse": "lhci autorun",
"test:htmlcs": "htmlcs http://localhost:8080"
},
"devDependencies": {
"@axe-core/cli": "^4.11.1",
"@lhci/cli": "^0.15.1",
"html_codesniffer": "^2.5.1",
"pa11y": "^9.1.1",
"puppeteer": "^24.40.0"
},
"overrides": {
"glob": "^10.3.10",
"rimraf": "^5.0.5",
"inflight": "npm:@isaacs/inflight@^1.0.6"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/vitistack/docs"
}
}