-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 838 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
32
33
34
{
"name": "adab-tech-site-a11y",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "http-server -p 8000",
"start:py": "python -m http.server 8000",
"pa11y": "pa11y http://127.0.0.1:8000 --reporter cli",
"axe-audit": "node axe-audit.js",
"prepare": "simple-git-hooks",
"precommit": "npm audit --audit-level=low || true"
},
"engines": {
"node": ">=18 <25"
},
"simple-git-hooks": {
"pre-commit": "npm run precommit"
},
"lint-staged": {
"*.{js,css,html}": [
"echo 'Files staged:'",
"git diff --name-only --staged"
]
},
"devDependencies": {
"@axe-core/playwright": "^4.7.0",
"axe-core": "^4.11.0",
"http-server": "^14.1.1",
"lint-staged": "^13.3.0",
"pa11y": "^9.1.1",
"playwright": "^1.49.0",
"simple-git-hooks": "^2.13.1"
}
}