-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "use-async-resource",
"version": "2.2.2",
"description": "A custom React hook for simple data fetching with React Suspense",
"keywords": [
"react",
"reactjs",
"async",
"data",
"fetch",
"cache",
"suspense",
"hooks",
"custom-hook",
"react-hook",
"react-hooks",
"react-cache",
"react-suspense",
"data-fetching"
],
"author": {
"name": "Andrei Duca",
"email": "[email protected]"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/andreiduca/use-async-resource.git"
},
"bugs": "https://github.com/andreiduca/use-async-resource/issues",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "jest --verbose --coverage"
},
"dependencies": {
"object-hash": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/dom": "8",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "27",
"@types/react": "16 || 17",
"@types/react-dom": "16 || 17",
"babel-jest": "27",
"jest": "27",
"react": "16 || 17 || 18",
"react-test-renderer": "16 || 17",
"typescript": "4"
},
"peerDependencies": {
"react": "16 || 17 || 18"
}
}