mirror of
https://github.com/Raghu-Ch/ES6-Handson.git
synced 2026-02-10 04:33:02 -05:00
19 lines
424 B
JSON
19 lines
424 B
JSON
{
|
|
"name": "es6-tutorial",
|
|
"version": "1.0.0",
|
|
"description": "ES6 DEMO",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"babel": "babel --presets es2015 js/main.js -o build/main.bundle.js",
|
|
"start": "http-server -p 7001"
|
|
},
|
|
"author": "RaghuJS",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.22.2",
|
|
"babel-core": "^6.22.1",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"http-server": "^0.9.0"
|
|
}
|
|
}
|