-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "use-async-memo",
"version": "1.2.5",
"scripts": {
"build": "gulp prebuild && tsc",
"test": "jest"
},
"description": "React hook for generating async memoized data.",
"keywords": [
"react",
"hook",
"memo",
"async"
],
"main": "index.js",
"repository": "https://github.com/awmleer/use-async-memo",
"author": "awmleer <[email protected]>",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/jest": "^29.5.8",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"use-debounce": "^2.1.0"
},
"sideEffects": [],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}