-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "use-window-resize-handler",
"version": "1.0.4",
"description": "Window resize handler hook",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"author": "Dominic Tylor",
"jsnext:main": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/DominicTylor/use-window-resize-handler"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DominicTylor/use-window-resize-handler/issues"
},
"homepage": "https://github.com/DominicTylor/use-window-resize-handler#readme",
"keywords": [
"react",
"hooks",
"resize"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.9.0"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/runtime": "7.8.7",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "25.1.4",
"@types/react": "16.9.23",
"cross-env": "7.0.2",
"react": "16.13.0",
"react-scripts": "3.4.0",
"react-test-renderer": "16.13.0",
"rollup": "2.0.6",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-peer-deps-external": "2.2.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "0.26.0",
"typescript": "3.8.3"
}
}