-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "jest-mock-react-noop",
"version": "2.0.1",
"description": "Mock React components to noops with Jest.",
"repository": "AndersDJohnson/jest-mock-react-noop",
"funding": "https://github.com/sponsors/AndersDJohnson",
"license": "ISC",
"keywords": [
"react",
"react-testing-library",
"@testing-library/react",
"testing-library",
"mock",
"jest",
"noop",
"component",
"mount",
"shallow",
"enzyme"
],
"main": "dist/index.js",
"dependencies": {
"react-display-name": "^0.2.5"
},
"peerDependencies": {
"react": "^16",
"@testing-library/react": "^9"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "9.4.0",
"@types/jest": "^24.0.25",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.2",
"@types/testing-library__jest-dom": "^5.0.0",
"@types/testing-library__react": "^9.1.2",
"jest": "^24.9.0",
"react": "^16.8.4",
"react-dom": "^16.12.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.5"
},
"scripts": {
"test": "jest",
"build": "tsc"
}
}