-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-test",
"version": "0.24.2",
"description": "Expressive testing library for React to make sure your code works as expected. Write better code, ship fewer bugs.",
"homepage": "https://react-test.dev/",
"repository": "https://github.com/franciscop/react-test.git",
"bugs": "https://github.com/franciscop/react-test/issues",
"funding": "https://www.paypal.me/franciscopresencia/19",
"author": "Francisco Presencia <public@francisco.io> (https://francisco.io/)",
"license": "MIT",
"type": "module",
"documentation": {
"title": "🧯 React Test - Expressive testing library for React",
"home": "assets/home.html",
"menu": {
"Documentation": "/documentation",
"Issues": "https://github.com/franciscop/react-test/issues",
"Contribute": "https://github.com/franciscop/react-test/blob/master/Contributing.md",
"Get help": "https://superpeer.com/francisco/-/javascript-and-react-help",
"Github": "https://github.com/franciscop/react-test"
},
"pages": [
"readme.md",
"src/methods",
"src/helpers",
"src/jest-matchers",
"src/examples"
]
},
"scripts": {
"build": "vite build",
"lint": "tsc",
"size": "echo $(gzip -c dist/index.min.js | wc -c) bytes",
"start": "vitest",
"test": "vitest run --coverage"
},
"keywords": [
"react",
"test",
"testing",
"expressive",
"jest"
],
"main": "dist/index.min.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "^0.27.7",
"jsdom": "^29.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.2"
}
}