forked from FezVrasta/react-resize-aware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "react-resize-aware",
"version": "3.1.1",
"description": "A React hook that makes it possible to listen to element resize events.",
"homepage": "https://github.com/FezVrasta/react-resize-aware#readme",
"author": "Federico Zivolo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FezVrasta/react-resize-aware/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/FezVrasta/react-resize-aware.git"
},
"keywords": [
"react",
"resize",
"element",
"queries",
"media",
"query",
"element",
"query",
"react-component"
],
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.js",
"scripts": {
"start": "microbundle watch",
"prepare": "microbundle --name useResizeAware --globals react=React --jsx React.createElement && cp -f dist/index.umd.js docs/react-resize-aware.js && flow-copy-source src dist && cp src/index.d.ts dist/index.d.ts"
},
"files": [
"dist/*",
"src/*"
],
"devDependencies": {
"flow-bin": "^0.113.0",
"flow-copy-source": "^2.0.9",
"microbundle": "0.12.0-next.6",
"react": "16.12.0"
},
"peerDependencies": {
"react": "^16.8.0 || 17.x"
}
}