forked from liip/TheA11yMachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "the-a11y-machine",
"version": "0.9.3",
"description": "The A11y Machine is an automated accessibility testing tool which crawls and tests all pages of any website.",
"repository": {
"type": "git",
"url": "git+https://github.com/liip/TheA11yMachine.git"
},
"keywords": [
"accessibility",
"test",
"wcag",
"crawl"
],
"author": "Ivan Enderlin",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/liip/TheA11yMachine/issues"
},
"homepage": "https://github.com/liip/TheA11yMachine#readme",
"main": "./lib/a11ym.js",
"dependencies": {
"async": "^2.1.4",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"get-installed-path": "^2.0.3",
"glob": "^6.0.4",
"grunt-cli": "^1.3.2",
"html_codesniffer": "^2.2.0",
"js-yaml": "^3.7.0",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"open": "0.0.5",
"pa11y": "^4.3.0",
"phantomjs-prebuilt": "^2.1.14",
"process": "^0.11.9",
"simplecrawler": "^1.0.3",
"underscore": "^1.8.3"
},
"engines": {
"node": ">=0.12.9"
},
"bin": {
"a11ym": "./a11ym",
"a11ym-dashboard": "./a11ym-dashboard",
"a11ym-sniffers": "./a11ym-sniffers"
}
}