-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 906 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 906 Bytes
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
{
"name": "react-testing-library-wrapper",
"version": "0.0.10",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kondows95/react-testing-library-wrapper.git"
},
"description": "The wrapper for @testing-library/react specialized in TestId methods.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"jest": "^25.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@testing-library/react": "^10.0.4",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"jest": {
"rootDir": "./src",
"transform": {
"^.+\\.(js|jsx|mjs)$": "babel-jest",
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}