-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "jooks",
"version": "2.0.2",
"private": false,
"main": "Jooks.js",
"types": "Jooks.d.ts",
"description": "An idiot-proof way of testing your custom react hooks",
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.182",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"jest-fetch-mock": "^3.0.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hooks-testing-library": "^0.6.0",
"react-scripts": "^5.0.1",
"react-testing-library": "^8.0.1",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/antoinejaussoin/jooks.git"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"jest": "*",
"react": ">= 16.8.0"
},
"scripts": {
"start": "react-scripts start",
"prepare": "tsc -p ./tsconfig.build.json",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"author": {
"name": "Antoine Jaussoin",
"email": "ant+npm@jaussoin.com",
"url": "https://github.com/antoinejaussoin/jooks"
},
"keywords": [
"jest",
"react",
"hooks",
"react hooks",
"testing",
"unit test",
"library",
"typescript"
],
"homepage": "https://github.com/antoinejaussoin/jooks",
"readme": "README.md",
"jest": {
"resetMocks": false
}
}