-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 974 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
{
"name": "@jakepartusch/lumberjack",
"version": "0.6.1",
"description": "Scans your entire website for accessibility issues",
"main": "index.js",
"bin": "./bin/cli.js",
"engines": {
"node": ">=10.0.0"
},
"author": {
"name": "Jake Partusch",
"url": "https://github.com/JakePartusch"
},
"keywords": [
"accessibility",
"website",
"scan",
"audit"
],
"homepage": "https://github.com/JakePartusch/lumberjack",
"bugs": {
"url": "https://github.com/JakePartusch/lumberjack/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JakePartusch/lumberjack.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"audit": "node ./bin/cli.js --url 'https://jake.partus.ch'"
},
"license": "ISC",
"dependencies": {
"arg": "^4.1.3",
"axe-core": "^3.4.2",
"chalk": "^3.0.0",
"ora": "^4.0.3",
"playwright": "^0.10.0",
"sitemapper": "3.0.5"
}
}