-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "scrollmonitor-react",
"version": "2.4.1",
"description": "React HOC for the scrollMonitor",
"main": "dist/index.js",
"files": "dist/index.js",
"scripts": {
"build": "babel index.js -d dist --source-maps"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/stutrek/scrollmonitor-react.git"
},
"keywords": [
"scroll",
"events",
"scrollmonitor",
"react"
],
"author": "Stu Kabakoff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stutrek/scrollmonitor-react/issues"
},
"homepage": "https://github.com/stutrek/scrollmonitor-react#readme",
"dependencies": {
"hoist-non-react-statics": "^3.0.1",
"prop-types": "^15.5.10",
"scrollmonitor": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.16.0"
},
"peerDependencies": {
"react": "^15.3.2 || ^16.0.0",
"react-dom": "^15.3.2 || ^16.0.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}