forked from mhaagens/lazy-route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "route-lazy",
"version": "1.1.1",
"description": "Lazy / async route loading for React Router 4",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "webpack",
"build": "./node_modules/.bin/babel ./src/index.js -o ./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zanjs/lazy-route.git"
},
"keywords": [
"react-router",
"async",
"react",
"chunk",
"lazy-loading",
"route",
"code-splitting",
"system-import"
],
"author": "Zanjs && Martin Haagensli ",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.24.1",
"webpack": "^3.4.1"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2"
}
}