21 lines
684 B
JSON
21 lines
684 B
JSON
{
|
|
"name": "resume-site",
|
|
"version": "1.0.0",
|
|
"description": "Resume website with accessibility testing",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "tests/run-all-tests.sh",
|
|
"test:accessibility": "tests/accessibility/run-accessibility-tests.sh",
|
|
"test:a11y:axe": "node tests/accessibility/axe-test.js",
|
|
"test:a11y:pa11y": "tests/accessibility/pa11y-test.sh",
|
|
"test:a11y:manual": "echo 'Please complete the manual checklist at tests/accessibility/manual-checklist.md'",
|
|
"start": "cd docker/resume && ./caddy.sh"
|
|
},
|
|
"devDependencies": {
|
|
"axe-core": "^4.10.3",
|
|
"lighthouse": "^10.0.0",
|
|
"pa11y": "^9.0.0",
|
|
"playwright": "^1.53.2"
|
|
}
|
|
}
|