forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.74 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "axe-core",
"description": "Accessibility engine for automated Web UI testing",
"version": "3.3.2",
"license": "MPL-2.0",
"engines": {
"node": ">=4"
},
"contributors": [
{
"name": "David Sturley",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Dylan Barrell",
"email": "dylan@barrell.com",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Wilco Fiers",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Dian Fay",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
},
{
"name": "Marcy Sutton",
"organization": "Deque Systems, Inc.",
"url": "http://deque.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/axe-core.git"
},
"keywords": [
"Accessibility",
"a11y",
"testing",
"unit",
"tdd",
"bdd",
"axe"
],
"main": "axe.js",
"typings": "axe.d.ts",
"standard-version": {
"scripts": {
"postbump": "npm run sri-update"
}
},
"scripts": {
"start": "npm run develop",
"develop": "grunt dev --force",
"api-docs": "jsdoc --configure .jsdoc.json",
"imports-gen": "node ./build/imports-generator",
"build": "grunt",
"eslint": "eslint --color --format stylish '{lib,test,build,doc}/**/*.js' 'Gruntfile.js'",
"test": "npm run retire && tsc && grunt test",
"test:examples": "node ./doc/examples/test-examples",
"test:locales": "mocha test/test-locales.js",
"test:rule-help-version": "mocha test/test-rule-help-version.js",
"version": "echo \"use 'npm run release' to bump axe-core version\" && exit 1",
"prepublishOnly": "grunt build && grunt file-exists",
"retire": "retire --jspath lib --nodepath ./ --ignorefile .retireignore.json --severity medium",
"release": "standard-version -a",
"rule-gen": "node build/rule-generator",
"next-release": "standard-version --scripts.prebump=./build/next-version.js --skip.commit=true --skip.tag=true",
"sri-update": "grunt build && node build/sri-update && git add sri-history.json",
"fmt": "prettier --write *.{json,md,js} **/*.ts './{.github,build,doc,lib,test}/**/*.{json,md,js,ts,html}'"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.4",
"@deque/dot": "^1.1.4",
"aria-query": "^3.0.0",
"axios": "^0.19.0",
"babelify": "^10.0.0",
"blanket": "~1.2.3",
"browserify": "^16.2.3",
"chai": "~4.2.0",
"clone": "~2.1.1",
"css-selector-parser": "^1.3.0",
"derequire": "^2.0.6",
"emoji-regex": "8.0.0",
"es6-promise": "^4.2.6",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.2.0",
"execa": "^2.0.2",
"fs-extra": "^8.0.1",
"globby": "^10.0.0",
"grunt": "^1.0.3",
"grunt-babel": "^8.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha": "1.2.0",
"grunt-parallel": "^0.5.1",
"grunt-run": "^0.8.1",
"html-entities": "^1.2.0",
"husky": "^3.0.0",
"jquery": "^3.0.0",
"jsdoc": "^3.5.5",
"lint-staged": "^9.2.1",
"make-dir": "^3.0.0",
"markdown-table": "^1.1.2",
"minami": "^1.2.3",
"mkdirp": "^0.5.1",
"mocha": "^6.1.2",
"prettier": "^1.17.1",
"retire": "^2.0.1",
"revalidator": "~0.3.1",
"selenium-webdriver": "~3.6.0",
"sri-toolbox": "^0.2.0",
"standard-version": "^7.0.0",
"typescript": "^3.5.3",
"uglify-js": "^3.4.4",
"weakmap-polyfill": "^2.0.0"
},
"dependencies": {},
"lint-staged": {
"*.{md,json,ts,html}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}