-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "react-async-loading",
"version": "0.3.3",
"description": "Code splitting to React and Webpack",
"main": "./lib/index.js",
"keywords": [
"hoc",
"code splitting",
"react",
"reactjs",
"webpack"
],
"author": "Andrey Marchenko",
"license": "MIT",
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:lib": "babel src --out-dir lib",
"build:dist": "webpack src/index.js dist/react-async-loading.min.js",
"build:example": "webpack --config ./example/webpack.config.js",
"test": "ava --verbose",
"clean": "rimraf lib dist",
"prepublish": "npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Tom910/react-async-loading.git"
},
"files": [
"lib",
"dist",
"src"
],
"ava": {
"require": "./test/helpers/setup-test-env.js",
"babel": "inherit"
},
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-register": "6.14.0",
"enzyme": "2.4.1",
"jsdom": "9.4.5",
"react": "15.3.1",
"react-addons-test-utils": "15.3.1",
"react-dom": "15.3.1",
"rimraf": "2.5.4",
"webpack": "2.1.0-beta.21"
},
"peerDependencies": {
"react": "*"
}
}