forked from dequelabs/axe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "axe-cli",
"version": "3.0.0",
"description": "A CLI for accessibility testing using axe-core",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha test/*.js",
"lint": "eslint .",
"fmt": "prettier --write *.{js,json,md} lib/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dequelabs/axe-cli.git"
},
"keywords": [
"axe-core",
"accessibility",
"a11y",
"wcag",
"cli",
"testing"
],
"author": {
"name": "Wilco Fiers",
"organization": "Deque Systems, Inc.",
"url": "http://github.com/wilcofiers/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/dequelabs/axe-cli/issues"
},
"bin": {
"axe": "axe-cli"
},
"homepage": "https://github.com/dequelabs/axe-cli#readme",
"dependencies": {
"axe-core": "^3.1.2",
"axe-webdriverjs": "^2.1.0",
"chromedriver": "^2.36.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"selenium-webdriver": "^3.5.0"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"mocha": "^5.1.0",
"node-static": "^0.7.10",
"prettier": "^1.14.3",
"snyk": "^1.95.3"
},
"snyk": true,
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80,
"bracketSpacing": true,
"useTabs": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"es6": true,
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"no-console": "off"
},
"overrides": [
{
"files": "test/*.js",
"env": {
"mocha": true
}
}
]
}
}