-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
{
"name": "react-redux-async",
"version": "0.0.2",
"description": "Load react components and redux reducers asynchronously. Useful for code splitting and lazy loading.",
"main": "cjs/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf cjs es",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run clean && npm run build:cjs && npm run build:es",
"prepublish": "npm run build"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": "^15.5.0"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.3.13",
"cross-env": "^5.0.1",
"rimraf": "^2.3.4"
},
"author": "Ravindra Marella",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marella/react-redux-async.git"
},
"bugs": {
"url": "https://github.com/marella/react-redux-async/issues"
},
"homepage": "https://github.com/marella/react-redux-async",
"keywords": [
"react",
"redux",
"async",
"code splitting",
"lazy loading",
"async components",
"async reducers"
]
}