-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.19 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-auto-scroll",
"version": "1.1.0",
"description": "A HOC that will auto-scroll to the bottom when a property changes",
"main": "lib/AutoScroll.js",
"scripts": {
"test": "standard && zuul --phantom -- ./test/AutoScroll.test.js",
"test-local": "zuul --local 8080 -- ./test/AutoScroll.test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:cesarandreu/react-auto-scroll.git"
},
"keywords": [
"auto",
"hoc",
"react",
"scroll"
],
"author": "Cesar Andreu <[email protected]> (https://github.com/cesarandreu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cesarandreu/react-auto-scroll/issues"
},
"homepage": "https://github.com/cesarandreu/react-auto-scroll#readme",
"devDependencies": {
"object.assign": "^4.0.3",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"standard": "^6.0.8",
"tape": "^4.5.1",
"zuul": "^3.10.1"
},
"peerDependencies": {
"react": "^0.14.9 || >=15.3.0",
"react-dom": "^0.14.9 || >=15.3.0"
},
"dependencies": {
"create-react-class": "^15.6.0",
"prop-types": "^15.5.10"
}
}