-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.6 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
{
"name": "babel-env-sandbox",
"version": "0.0.1",
"description": "try [email protected]",
"author": "[mediba] Satoshi Takeda <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mediba-takeda/babel-env-sandbox.git"
},
"scripts": {
"build:development": "cross-env BABEL_ENV=development webpack",
"build:android2": "cross-env BABEL_ENV=android2 webpack",
"build:android4": "cross-env BABEL_ENV=android4 webpack",
"build:ie10": "cross-env BABEL_ENV=ie10 webpack",
"build:ios9": "cross-env BABEL_ENV=ios9 webpack",
"build:chrome": "cross-env BABEL_ENV=chrome webpack",
"build:recent": "cross-env BABEL_ENV=recent webpack",
"build": "cross-env NODE_ENV=production npm-run-all build:*",
"cleanup": "rimraf docs/android2 docs/android4 docs/polyfill docs/chrome docs/development docs/ie10 docs/ios9 docs/recent",
"dev": "cross-env NODE_ENV=development npm-run-all build:*",
"prebuild": "npm run cleanup",
"predev": "npm run cleanup",
"cli:development": "babel src/scripts/index.js -o bundle.js"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.35",
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"babel-core": "7.0.0-alpha.16",
"babel-loader": "^8.0.0-beta.0",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^5.0.0",
"es3ify-webpack-plugin": "^0.0.1",
"html-webpack-plugin": "^2.29.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"webpack": "^3.10.0"
},
"dependencies": {
"es5-shim": "^4.5.9",
"whatwg-fetch": "^2.0.3"
}
}