-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.18 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
74
75
76
77
78
79
80
{
"name": "test-renderer",
"version": "1.2.0",
"description": "A lightweight test renderer for React and a modern replacement for the deprecated React Test Renderer.",
"keywords": [
"jest",
"react",
"react-19",
"react-test-renderer",
"test-renderer",
"testing"
],
"homepage": "https://github.com/mdjastrzebski/test-renderer",
"license": "MIT",
"author": "Maciej Jastrzebski <mdjastrzebski@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/mdjastrzebski/test-renderer.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": {
"default": "./package.json"
}
},
"scripts": {
"build": "tsdown",
"check:react-release-guard": "node scripts/check-react-release-guard.mjs",
"dev": "tsdown --watch",
"test": "jest",
"test:ci": "jest --coverage",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test:watch": "jest --watch",
"validate": "bun run typecheck && bun run test && bun run lint && bun run format:check",
"validate:fix": "bun run format && bun run lint --fix && bun run typecheck && bun run test -u",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"release": "release-it"
},
"dependencies": {
"@types/react-reconciler": "~0.33.0",
"react-reconciler": "~0.33.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^30.3.0",
"@release-it/conventional-changelog": "^10.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"eslint": "^10.2.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"jest": "^30.3.0",
"oxfmt": "^0.44.0",
"react": "^19.2.5",
"release-it": "^19.2.4",
"ts-jest": "^29.4.9",
"tsdown": "^0.21.7",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.1"
},
"peerDependencies": {
"react": "^19.0.0"
},
"testRenderer": {
"supportedReactRange": ">=19.0.0 <19.3.0"
}
}