-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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": "react-wrap-request",
"version": "7.0.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npm test && tsc -p .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misantronic/react-wrap-request.git"
},
"keywords": [
"react",
"wrap-request"
],
"author": "David Schkalee",
"license": "MIT",
"bugs": {
"url": "https://github.com/misantronic/react-wrap-request/issues"
},
"homepage": "https://github.com/misantronic/react-wrap-request#readme",
"peerDependencies": {
"react": ">= 16.8.0",
"wrap-request": ">= 7"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.4",
"@types/react": "^18.2.21",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"wrap-request": "^7.0.6"
},
"jest": {
"watchPathIgnorePatterns": [
"/dist/"
],
"transform": {
"\\.tsx?$": "ts-jest"
}
}
}