-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 789 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 789 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
{
"name": "contrast-plus-scripts",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"lint:html": "html-validate \"*.html\"",
"lint:spell": "cspell lint --config ./cspell.json --no-progress --show-context --relative \"**/*.md\" \"**/*.html\" \"!node_modules/**\"",
"test:a11y": "pa11y http://localhost:8005/ --standard wcag2aa --timeout 60000",
"serve": "python3 -m http.server 8005",
"test": "node --test tests/*.test.js",
"check": "npm run lint:html && npm run lint:spell"
},
"dependencies": {
"add": "^2.0.6",
"apca-w3": "^0.1.9",
"commit": "^0.0.4",
"git": "^0.1.5",
"package-lock.json": "^1.0.0",
"push": "^0.1.0"
},
"devDependencies": {
"cspell": "^9.7.0",
"html-validate": "^10.11.2"
}
}