37 lines
914 B
JSON
37 lines
914 B
JSON
{
|
|
"name": "resume",
|
|
"version": "1.0.0",
|
|
"description": "Colin Knapp's professional resume website",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"serve": "node tests/serve.js",
|
|
"test": "npm run test:lighthouse && npm run test:playwright",
|
|
"test:playwright": "npx playwright test",
|
|
"test:lighthouse": "node tests/lighthouse.js",
|
|
"test:headers": "playwright test tests/headers.spec.js",
|
|
"setup": "npx playwright install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@git.nixc.us:colin/resume.git"
|
|
},
|
|
"keywords": [
|
|
"resume",
|
|
"portfolio",
|
|
"accessibility"
|
|
],
|
|
"author": "Colin Knapp",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.42.1",
|
|
"chrome-launcher": "^1.1.2",
|
|
"lighthouse": "^11.4.0",
|
|
"puppeteer": "^22.4.1"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"lighthouse": "^11.6.0",
|
|
"playwright": "^1.42.1"
|
|
}
|
|
}
|