-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "a11y-audit",
"version": "1.3.0",
"description": "Automated Accessibility Audits for Websites",
"homepage": "https://github.com/bell-lab-apps/a11y-audit#readme",
"license": "MIT",
"main": "./bin/cli.js",
"bin": {
"a11y-audit": "./bin/cli.js"
},
"keywords": [
"a11y",
"accessibility",
"cli",
"csv",
"html",
"jira",
"json",
"markdown",
"report",
"screen capture",
"screenshot",
"Section508",
"WCAG2A",
"WCAG2AA",
"WCAG2AAA",
"xml"
],
"contributors": [
{
"name": "Warren Galyen",
"email": "[email protected]",
"url": "bellhelmets.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/bell-lab-apps/a11y-audit.git"
},
"bugs": {
"url": "https://github.com/bell-lab-apps/a11y-audit/issues"
},
"scripts": {
"test": "eslint --ext .js ./ && echo '\n CODE PERFECTION !!!\n'"
},
"dependencies": {
"archiver": "^3.1.1",
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"handlebars": "^4.7.3",
"moment": "^2.29.4",
"open": "^7.0.3",
"ora": "^4.0.3",
"pa11y": "^6.0.1",
"prompt": "^1.0.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1"
}
}