Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
deps: upgrade babel
Browse files Browse the repository at this point in the history
  • Loading branch information
René Kooi committed Feb 24, 2016
1 parent 82a10b5 commit bab54b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
{ "stage": 1 }
{
"presets": ["es2015"],
"plugins": ["transform-object-rest-spread"]
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@
, "dependencies":
{ "request": "2.x" }
, "devDependencies":
{ "babel": "5.x"
{ "babel-cli": "^6.5.0"
, "babel-preset-es2015": "^6.5.0"
, "babel-plugin-transform-object-rest-spread": "^6.5.0"
, "babel-register": "^6.5.0"
, "mocha": "2.x" }
, "scripts":
{ "prepublish": "npm run babel"
, "babel": "./node_modules/.bin/babel --out-dir lib src"
, "test": "./node_modules/.bin/mocha --compilers js:babel/register" } }
, "test": "./node_modules/.bin/mocha --compilers js:babel-register" } }

0 comments on commit bab54b7

Please sign in to comment.