-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "react-assert",
"author": "viktor-podzigun",
"version": "0.0.0",
"license": "MIT",
"description": "Make your React.js rendering predictable",
"scripts": {
"test": "tsc && bun test && node ./test/all.mjs",
"format": "prettier **/*.mjs **/*.mts --write",
"formatCheck": "prettier **/*.mjs **/*.mts --check"
},
"type": "module",
"exports": "./index.mjs",
"types": "./index.d.mts",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viktor-podzigun/react-assert.git"
},
"homepage": "https://github.com/viktor-podzigun/react-assert",
"bugs": {
"url": "http://github.com/viktor-podzigun/react-assert/issues"
},
"keywords": [
"test",
"react",
"react-test-renderer"
],
"engines": {
"node": ">=16",
"bun": ">=0.5.8"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-test-renderer": ">=17.0.1"
},
"devDependencies": {
"@types/node": "^16.6.2",
"@types/react": "^17.0.1",
"@types/react-test-renderer": "^17.0.1",
"c8": "^7.13.0",
"mock-fn": "^1.0.0",
"prettier": "^2.8.8",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1",
"typescript": "^4.9.5"
}
}