-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "babel-webpack-tree-shaking",
"version": "1.0.0",
"description": "Tree-shaking example with Babel and Webpack",
"main": "dist/car.es2015.prod.bundle.js",
"scripts": {
"webpack": "webpack --config webpack.config.js",
"webpack-prod": "webpack --config webpack.prod.config.js",
"webpack-es2015": "webpack --config webpack.es2015.config.js",
"webpack-es2015-prod": "webpack --config webpack.es2015.prod.config.js",
"serve": "http-server -a 0.0.0.0 -p 9000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/babel-webpack-tree-shaking.git"
},
"keywords": [
"tree-shaking",
"babel",
"webpack"
],
"author": {
"name": "blacksonic",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-core": "~6.25.0",
"babel-loader": "~7.0.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "~1.5.2",
"babili": "~0.1.3",
"babili-webpack-plugin": "~0.1.1",
"http-server": "~0.10.0",
"webpack": "~2.6.1"
}
}