-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.6 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
57
58
59
{
"name": "react-inview-monitor",
"version": "2.3.0",
"description": "Easy to use for effects when component scrolls into view, f.e. fade-in, autoplay video, etc.",
"homepage": "https://snipsco.github.io/react-inview-monitor/",
"main": "./lib/index.js",
"scripts": {
"prepublish": "npm run transpile",
"transpile": "babel -d lib src/",
"build": "npm run build-docs",
"build-docs": "webpack --mode=production examples/src -o examples/dist/app.js --module-bind js=babel-loader",
"precommit": "lint-staged"
},
"lint-staged": {
"{examples/,}src/**/*.js": [
"prettier --write --no-semi --single-quote",
"git add"
]
},
"keywords": [
"react",
"scroll",
"inview",
"reveal",
"fadein",
"scrollmonitor"
],
"author": "Jonas Ohlsson Aden",
"repository": {
"type": "git",
"url": "git://github.com/snipsco/react-inview-monitor.git#master"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-transform-react-constant-elements": "^7.6.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"husky": "^3.0.7",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-highlight": "^0.12.0",
"react-mt-svg-lines": "^0.9.1",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"files": [
"lib/**/*.js"
]
}