Skip to content

Commit

Permalink
Add babel build and re-add oauth dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
akhaku committed Aug 11, 2016
1 parent 2b94dab commit de49880
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"presets": ["es2015", "react"],
"presets": ["es2015"],
"plugins": ["transform-object-rest-spread"]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*swp
*log
node_modules
lib
12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,24 @@
"repository": {
"url": "https://github.com/evernote/evernote-sdk-js"
},
"files": ["src"],
"files": [
"lib"
],
"main": "lib/index",
"scripts": {
"lint": "eslint src"
"lint": "eslint src",
"build": "babel src -d lib"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.2.2",
"eslint-config-evernote": "^2.0.2",
"eslint-plugin-evernote": "^1.0.0"
},
"dependencies": {
"oauth": "^0.9.14"
}
}

0 comments on commit de49880

Please sign in to comment.