-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
87 lines (87 loc) · 1.89 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
{
"name": "jest-axe",
"version": "8.0.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": "npm run lint && npm run jest",
"jest": "FORCE_COLOR=0 jest",
"lint": "eslint *.js __tests__/**/*.js && prettier --check *.js __tests__/**/*.js"
},
"keywords": [
"jest",
"matcher",
"axe",
"accessibility",
"a11y"
],
"author": "Nick Colley",
"license": "MIT",
"engines": {
"node": ">= 16.0.0"
},
"dependencies": {
"axe-core": "4.9.1",
"chalk": "4.1.2",
"jest-matcher-utils": "29.2.2",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@testing-library/vue": "^6.6.1",
"@vue/test-utils": "^2.2.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vue": "^3.2.41"
},
"jest": {
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
}
},
"eslintConfig": {
"globals": {
"document": true
},
"env": {
"shared-node-browser": true,
"jest/globals": true
},
"extends": [
"eslint:recommended",
"plugin:n/recommended",
"prettier",
"plugin:jest/recommended",
"plugin:jest-dom/recommended"
],
"plugins": [
"prettier",
"jest",
"jest-dom"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2022
}
}
}