forked from chaance/vitest-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "vitest-dom",
"version": "0.1.0",
"description": "Custom Vitest matchers to test the state of the DOM, forked from jest-dom.",
"repository": {
"type": "git",
"url": "git+https://github.com/chaance/vitest-dom.git"
},
"license": "MIT",
"author": "Chance Stricklad <[email protected]>",
"type": "module",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"extend-expect.d.ts",
"extend-expect.js",
"matchers.d.ts",
"matchers.js"
],
"scripts": {
"build": "tsup",
"test:dom": "vitest --config vitest.config.dom.ts",
"test:node": "vitest --config vitest.config.node.js",
"test": "run-p test:*",
"lint": "eslint .",
"format": "prettier --write '**/*.{ts,js}'"
},
"dependencies": {
"aria-query": "^5.1.3",
"chalk": "^5.2.0",
"css.escape": "^1.5.1",
"dom-accessibility-api": "^0.6.0",
"lodash-es": "^4.17.21",
"redent": "^4.0.0"
},
"devDependencies": {
"@types/aria-query": "^5.0.1",
"@types/css.escape": "^1.5.0",
"@types/lodash-es": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"esbuild": "^0.14.48",
"eslint": "^8.40.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"fast-glob": "^3.2.12",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"pretty-format": "^28.1.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
},
"peerDependencies": {
"vitest": "^0.31.0"
}
}