-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "react-window-size-listener",
"version": "1.5.3",
"description": "React component for listening to window resize events",
"main": "lib/index.js",
"author": "Cesar Andreu <cesarandreu@gmail.com>, rewrite by Krunoslav Banovac <kunokdev@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/kunokdev/react-window-size-listener",
"repository": {
"type": "git",
"url": "git://github.com/kunokdev/react-window-size-listener.git"
},
"bugs": {
"url": "https://github.com/kunokdev/react-window-size-listener/issues"
},
"dependencies": {
"lodash.debounce": "^3.1.1",
"prop-types": "^15.6.0",
"randomatic": ">=3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"webpack": "^3.11.0"
},
"peerDependencies": {
"react": ">=15.0.0 <= 16",
"react-dom": ">=15.0.0 <= 16"
},
"scripts": {
"dev": "webpack --watch",
"build": "webpack -p"
},
"keywords": [
"reactjs",
"react",
"resize",
"listener",
"window",
"resize",
"viewport"
]
}