forked from closeio/use-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "@closeio/use-infinite-scroll",
"version": "1.0.0",
"description": "Super simple React hook for creating an infinite scroll experience based on the IntersectionObserver API",
"author": "Vitor Buzinaro <[email protected]>",
"license": "MIT",
"repository": "closeio/use-infinite-scroll",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn build",
"deploy": "cd example && yarn && gh-pages -d build -u \"github-actions-bot <[email protected]>\""
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@svgr/rollup": "^4.3.3",
"@testing-library/react-hooks": "^3.2.1",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"gh-pages": "^2.1.1",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-intersection-observer": "^8.26.1",
"react-scripts": "^3.2.0",
"react-test-renderer": "^16.13.1",
"rollup": "^1.25.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-url": "^3.0.0"
},
"files": [
"dist"
]
}