axe-core 4.3.3 → 4.3.5-canary.034a846
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/axe.d.ts +11 -6
- package/axe.js +825 -546
- package/axe.min.js +2 -2
- package/locales/ko.json +596 -377
- package/package.json +11 -8
- package/sri-history.json +301 -285
- package/CHANGELOG.md +0 -1413
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axe-core",
|
|
3
3
|
"description": "Accessibility engine for automated Web UI testing",
|
|
4
|
-
"version": "4.3.
|
|
4
|
+
"version": "4.3.5-canary.034a846",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=4"
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
"test:unit:integration": "npm run test:unit -- testDirs=integration",
|
|
84
84
|
"test:unit:virtual-rules": "npm run test:unit -- testDirs=virtual-rules",
|
|
85
85
|
"integration": "node test/integration/full/test-webdriver.js",
|
|
86
|
+
"integration:apg": "mocha test/aria-practices/*.spec.js",
|
|
86
87
|
"integration:chrome": "npm run integration -- browser=Chrome",
|
|
87
88
|
"integration:firefox": "npm run integration -- browser=Firefox",
|
|
88
89
|
"integration:ie": "npm run integration -- browser=IE",
|
|
@@ -93,7 +94,9 @@
|
|
|
93
94
|
"test:examples": "node ./doc/examples/test-examples",
|
|
94
95
|
"test:act": "karma start test/act-mapping/karma.config.js",
|
|
95
96
|
"test:act:debug": "npm run test:act -- --no-single-run --browsers=Chrome",
|
|
97
|
+
"test:apg": "start-server-and-test 9876 integration:apg",
|
|
96
98
|
"test:locales": "mocha test/test-locales.js",
|
|
99
|
+
"test:virtual-rules": "mocha test/test-virtual-rules.js",
|
|
97
100
|
"test:rule-help-version": "mocha test/test-rule-help-version.js",
|
|
98
101
|
"test:node": "mocha test/node/*.js",
|
|
99
102
|
"version": "echo \"use 'npm run release' to bump axe-core version\" && exit 1",
|
|
@@ -105,16 +108,18 @@
|
|
|
105
108
|
"fmt": "prettier --write .*.json *.{json,md,js} **/*.ts './{.circleci,.github,build,doc,lib,locales,test,typings}/**/*.{json,md,js,ts,html}'"
|
|
106
109
|
},
|
|
107
110
|
"devDependencies": {
|
|
111
|
+
"@axe-core/webdriverjs": "^4.2.2",
|
|
108
112
|
"@babel/core": "^7.5.4",
|
|
109
113
|
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
|
|
110
114
|
"@babel/polyfill": "^7.4.4",
|
|
111
115
|
"@babel/preset-env": "^7.5.4",
|
|
112
116
|
"@deque/dot": "^1.1.5",
|
|
113
117
|
"act-rules.github.io": "github:act-rules/act-rules.github.io#master",
|
|
118
|
+
"aria-practices": "github:w3c/aria-practices#f7de7ec3a53534018237f24cb9e610f26c30c367",
|
|
114
119
|
"aria-query": "^3.0.0",
|
|
115
120
|
"chai": "~4.2.0",
|
|
116
121
|
"chalk": "^4.1.0",
|
|
117
|
-
"chromedriver": "^
|
|
122
|
+
"chromedriver": "^95.0.0",
|
|
118
123
|
"clone": "^2.1.2",
|
|
119
124
|
"conventional-commits-parser": "^3.1.0",
|
|
120
125
|
"css-selector-parser": "^1.3.0",
|
|
@@ -147,12 +152,12 @@
|
|
|
147
152
|
"karma-mocha": "^2.0.1",
|
|
148
153
|
"karma-mocha-reporter": "^2.2.5",
|
|
149
154
|
"karma-sinon": "^1.0.5",
|
|
150
|
-
"lint-staged": "^
|
|
155
|
+
"lint-staged": "^11.2.6",
|
|
151
156
|
"make-dir": "^3.0.0",
|
|
152
157
|
"markdown-table": "^1.1.2",
|
|
153
158
|
"memoizee": "^0.4.14",
|
|
154
159
|
"minami": "^1.2.3",
|
|
155
|
-
"mocha": "
|
|
160
|
+
"mocha": "8.0.1",
|
|
156
161
|
"node-notifier": "^8.0.1",
|
|
157
162
|
"npm-run-all": "^4.1.5",
|
|
158
163
|
"prettier": "^1.17.1",
|
|
@@ -175,13 +180,11 @@
|
|
|
175
180
|
},
|
|
176
181
|
"lint-staged": {
|
|
177
182
|
"*.{md,json,ts,html}": [
|
|
178
|
-
"prettier --write"
|
|
179
|
-
"git add"
|
|
183
|
+
"prettier --write"
|
|
180
184
|
],
|
|
181
185
|
"*.js": [
|
|
182
186
|
"eslint --fix",
|
|
183
|
-
"prettier --write"
|
|
184
|
-
"git add"
|
|
187
|
+
"prettier --write"
|
|
185
188
|
]
|
|
186
189
|
}
|
|
187
190
|
}
|