Upgrade to babel 6

This commit is contained in:
Calvin Montgomery 2016-09-18 22:08:43 -07:00
parent 83987afd73
commit 489c0933e8
1 changed files with 20 additions and 2 deletions

View File

@ -2,13 +2,17 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.21.4",
"version": "3.22.0",
"repository": {
"url": "http://github.com/calzoneman/sync"
},
"license": "MIT",
"dependencies": {
"babel": "^5.8.23",
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-destructuring": "^6.3.15",
"babel-preset-es2015": "^6.1.4",
"bcrypt": "^0.8.5",
"bluebird": "^2.10.1",
"body-parser": "^1.14.0",
@ -52,5 +56,19 @@
},
"devDependencies": {
"coffee-script": "^1.9.2"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"transform-es2015-destructuring",
{
"loose": true
}
],
"add-module-exports"
]
}
}