-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 917 Bytes
/
package.json
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
35
36
37
38
39
40
41
42
{
"name": "web-accessibility-tester-pa11y",
"description": "Check websites for accessibility issues using pa11y",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": ">=12.x <=14.x",
"npm": ">=8.3.x"
},
"type": "module",
"private": true,
"keywords": [
"nodejs",
"pa11y",
"a11y",
"a11y-testing",
"wcag2",
"accessibility",
"accessibility-checker"
],
"repository": {
"type": "git",
"url": "https://github.com/jinsley8/web-accessibility-tester-pa11y.git"
},
"author": "Jon Insley <[email protected]>",
"license": "ISC",
"scripts": {
"start": "node index",
"dev": "nodemon index"
},
"dependencies": {
"chalk": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"morgan": "^1.10.0",
"pa11y": "^6.1.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}