-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
69
70
71
72
73
{
"name": "react-test",
"version": "0.24.7",
"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": "github:franciscop/react-test",
"funding": "https://www.paypal.me/franciscopresencia/19",
"author": "Francisco Presencia <public@francisco.io> (https://francisco.io/)",
"license": "MIT",
"keywords": [
"react",
"test",
"testing",
"render",
"events",
"jest",
"vitest"
],
"scripts": {
"build": "npm run build:library && npm run build:types && npm run build:prettier",
"build:library": "vite build && mv dist/index.min.js . && rm -rf dist",
"build:types": "dts-bundle-generator --external-types 'react,react-dom' --out-file index.d.ts src/index.ts && cat src/jest-matchers/types.d.ts >> index.d.ts",
"build:prettier": "prettier src *.ts *.json --write",
"lint": "tsc",
"size": "echo $(gzip -c index.min.js | wc -c) bytes",
"start": "vitest",
"test": "vitest run --coverage"
},
"main": "index.min.js",
"type": "module",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.27.7",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"terser": "^5.46.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"documentation": {
"title": "🧯 React Test - Expressive testing library for React",
"home": "assets/home.html",
"menu": {
"Documentation": "/documentation",
"Donate": "https://www.paypal.me/franciscopresencia/19",
"Author": "https://francisco.io/",
"Github": "https://github.com/franciscop/form-mate"
},
"pages": [
"readme.md",
"src/methods",
"src/helpers",
"src/jest-matchers",
"src/examples"
]
}
}