forked from ccoenraets/es6-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 800 Bytes
/
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
{
"name": "es6-tutorial",
"version": "1.0.0",
"description": "Start the tutorial [here](http://ccoenraets.github.io/es6-tutorial).",
"main": "index.js",
"scripts": {
"babel": "babel --presets es2015 js/main.js -o build/main.bundle.js",
"start": "http-server",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jarzuaga/es6-tutorial.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jarzuaga/es6-tutorial/issues"
},
"homepage": "https://github.com/jarzuaga/es6-tutorial#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"http-server": "^0.9.0",
"webpack": "^1.14.0"
}
}