-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
59
60
61
62
63
64
65
{
"name": "use-await-data",
"version": "0.0.0",
"description": "A React hook that executes an async task to populate the desired data.",
"type": "module",
"sideEffects": false,
"source": "src/index.ts",
"main": "./dst/index.cjs",
"module": "./dst/index.module.js",
"unpkg": "./dst/index.umd.js",
"types": "dst/index.d.ts",
"exports": {
".": {
"browser": "./dst/index.module.js",
"umd": "./dst/index.umd.js",
"require": "./dst/index.cjs",
"types": "./dst/index.d.ts",
"default": "./dst/index.modern.js"
}
},
"files": [
"dst"
],
"scripts": {
"build": "microbundle",
"prepack": "npm run build",
"prepare": "husky install",
"test": "jest",
"watch": "jest --watch --detectOpenHandles",
"release": "semantic-release --branches release"
},
"keywords": [
"react",
"hooks",
"async",
"await",
"promise"
],
"author": "Yu Shimura <mail@yuhr.org>",
"license": "MPL-2.0",
"homepage": "https://github.com/yuhr/use-await-data#readme",
"repository": {
"type": "git",
"url": "https://github.com/yuhr/use-await-data.git"
},
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.2",
"eclint": "^2.8.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"microbundle": "0.13.1",
"prettier": "npm:@yuhr/prettier@^2.2.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}