-
Notifications
You must be signed in to change notification settings - Fork 7
/
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": "lazy-route",
"version": "1.0.7",
"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/mhaagens/lazy-route.git"
},
"keywords": [
"react-router",
"async",
"react",
"chunk",
"lazy-loading",
"route",
"code-splitting",
"system-import"
],
"author": "Martin Haagensli",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.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.18.0",
"webpack": "^2.2.0-rc.3"
},
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^4.0.0-alpha.6"
}
}