-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "react-window-resize-listener",
"version": "1.1.0",
"description": "React component for listening to window resize events",
"main": "lib/WindowResizeListener.js",
"scripts": {
"lint": "standard",
"test-local": "zuul --local --open -- ./test/WindowResizeListener.test.js",
"test-phantom": "zuul --phantom -- ./test/WindowResizeListener.test.js",
"test": "npm run lint && npm run test-phantom"
},
"repository": {
"type": "git",
"url": "git://github.com/cesarandreu/react-window-resize-listener.git"
},
"keywords": [
"reactjs",
"react",
"resize",
"listener",
"window",
"resize"
],
"author": "Cesar Andreu <[email protected]> (https://github.com/cesarandreu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cesarandreu/react-window-resize-listener/issues"
},
"homepage": "https://github.com/cesarandreu/react-window-resize-listener#readme",
"devDependencies": {
"phantomjs": "^1.9.18",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"standard": "^5.3.1",
"tape": "^4.2.2",
"zuul": "^3.7.1"
},
"dependencies": {
"lodash.debounce": "^3.1.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
}
}