-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "@larsthorup/react-test-renderer",
"private": false,
"version": "1.0.0",
"description": "A custom React renderer for faster testing of React components",
"keywords": [
"react",
"testing",
"renderer",
"custom renderer"
],
"homepage": "https://github.com/larsthorup/react-test-renderer",
"bugs": {
"url": "https://github.com/larsthorup/react-test-renderer/issues"
},
"scripts": {
"build": "tsc",
"ci": "npm run build && npm run format-check && npm run lint-exports && npm run test",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "vitest --coverage run"
},
"author": "Lars Thorup <lars@zealake.com> (https://www.fullstackagile.eu/larsthorup/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/larsthorup/react-test-renderer.git"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@types/node": "^22.10.3",
"@types/react-reconciler": "^0.32.0",
"@vitest/coverage-v8": "^3.1.4",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^3.1.4"
},
"dependencies": {
"react-reconciler": "^0.32.0"
},
"peerDependencies": {
"@types/react": "^19.0.1",
"react": "^19.0.0"
}
}