-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 1.62 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
{
"name": "vitest-axe",
"version": "1.0.0-pre.5",
"description": "Custom Vitest matcher for testing accessibility with aXe. Forked from jest-axe.",
"repository": {
"type": "git",
"url": "git+https://github.com/chaance/vitest-axe.git"
},
"license": "MIT",
"author": "Chance Stricklad <hi@chance.dev>",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./matchers": {
"types": "./dist/matchers.d.ts",
"default": "./dist/matchers.js"
},
"./extend-expect": {
"types": "./dist/extend-expect.d.ts",
"default": "./dist/extend-expect.js"
}
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"extend-expect.d.ts",
"extend-expect.js",
"matchers.d.ts",
"matchers.js"
],
"scripts": {
"test": "cross-env FORCE_COLOR=2 vitest",
"build": "tsup",
"lint": "eslint .",
"format": "prettier --write '**/*.{ts,js}'",
"clean": "rm -rf dist && rm -rf node_modules"
},
"dependencies": {
"@vitest/pretty-format": "^3.0.3",
"axe-core": "^4.10.2",
"chalk": "^5.4.1",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@chance/eslint": "^1.0.0-beta.7",
"@types/aria-query": "^5.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.7",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"jest-serializer-ansi-escapes": "^4.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.3"
},
"peerDependencies": {
"vitest": ">=1"
},
"packageManager": "pnpm@9.0.6"
}