forked from NickColley/jest-axe
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
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
{
"name": "jest-axe",
"version": "3.2.0",
"description": "Custom Jest matcher for aXe for testing accessibility",
"repository": "nickcolley/jest-axe",
"main": "index.js",
"files": [
"index.js",
"extend-expect.js"
],
"scripts": {
"test": "jest"
},
"keywords": [
"jest",
"matcher",
"axe",
"accessibility",
"a11y"
],
"author": "Nick Colley",
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"axe-core": "3.3.1",
"chalk": "2.4.2",
"jest-matcher-utils": "24.8.0",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@testing-library/react": "^9.2.0",
"@testing-library/vue": "^1.2.0",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"react": "^16.7.0",
"react-dom": "^16.8.6",
"vue": "^2.6.10",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}