-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "nightwatch-axe-verbose",
"version": "2.3.1",
"description": "For adding custom commands to allow you to run axe accessibility tests in your NightwatchJS test cases.",
"main": "index.js",
"scripts": {
"test": "rimraf ./tests_output/ && npx nightwatch --env headless",
"lint": "eslint ./nightwatch/** ./tests/**",
"lint:fix": "eslint ./nightwatch/** ./tests/** --fix"
},
"files": [
"nightwatch/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/reallymello/nightwatch-axe-verbose.git"
},
"keywords": [
"NightwatchJS",
"WCAG",
"aXe"
],
"author": "David Mello (http://www.davidmello.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reallymello/nightwatch-axe-verbose/issues"
},
"homepage": "https://github.com/reallymello/nightwatch-axe-verbose#readme",
"dependencies": {
"axe-core": "^4.9.1"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config": "^0.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nightwatch": "^3.6.3",
"prettier": "^2.7.1"
}
}