-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rrr-lazy",
"version": "4.1.0",
"description": "Lazy load component with react && react-router.",
"source": "src/index.js",
"module": "dist/rrr-lazy.esm.js",
"main": "dist/rrr-lazy.js",
"umd:main": "dist/rrr-lazy.umd.js",
"scripts": {
"build": "node build.js",
"clean": "rimraf dist",
"lint": "eslint src test --ext .js --ext .md",
"prepare": "npm-run-all -s clean lint test build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/kouhin/rrr-lazy.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"react",
"react-router",
"load",
"lazy",
"lazyload",
"react-router-hook",
"reactjs",
"intersection",
"observer"
],
"author": "Bin Hou <houbin217jz@gmail.com> (https://twitter.com/houbin217jz)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-markdown": "^1.0.0-rc.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rimraf": "^2.6.2",
"rollup": "^0.67.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0"
},
"dependencies": {
"create-react-context": "^0.2.3",
"hoist-non-react-statics": "^3.2.0",
"prop-types": "^15.6.2",
"react-fast-compare": "^2.0.4"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-dom": ">=16.2.0"
}
}