-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 1.07 KB
/
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
{
"name": "accessibility-checker",
"version": "1.0.0",
"description": "A web-based tool for assessing website accessibility, leveraging Puppeteer, axe-core, and Express. Users can input URLs to check for accessibility violations, which are then displayed in an easily understandable format.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobilerast/accessibility-checker.git"
},
"keywords": [
"accessibility",
"wcag",
"audit",
"puppeteer",
"axe-core",
"express"
],
"author": "Rast Mobile <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mobilerast/accessibility-checker/issues"
},
"homepage": "https://rastmobile.com",
"dependencies": {
"axe-core": "^4.8.2",
"puppeteer": "^21.0.0",
"express": "^4.17.1",
"body-parser": "^1.19.0",
"axe-puppeteer": "^1.1.1"
}
}