Includes babel configuration

This commit is contained in:
Zeno Rocha 2015-09-17 23:16:08 -07:00
parent 03956aa4c5
commit e9d9fa6157
2 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

13
package.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "clipboard.js",
"version": "0.0.0",
"description": "A modern approach to copy to the clipboard",
"main": "src/clipboard.js",
"dependencies": {
"babel": "^5.8.23"
},
"scripts": {
"build": "babel src/clipboard.js --out-file dist/clipboard.js",
"watch": "babel src/clipboard.js --out-file dist/clipboard.js --watch"
}
}