Skip to content

Instantly share code, notes, and snippets.

@johannesboyne
Created December 9, 2013 20:34
Show Gist options
  • Save johannesboyne/7880306 to your computer and use it in GitHub Desktop.
Save johannesboyne/7880306 to your computer and use it in GitHub Desktop.
{
"do you want to use browserify? (Y/n) ": {
"dependencies": {
"browserify": "~2.35.2",
"uglifyjs": "~2.3.6"
},
"scripts": {
"build-js": "browserify browser/main.js | uglifyjs -mc > static/bundle.js"
},
"default": true
},
"do you want to use a watcher for the JS files? (Y/n) ": {
"devDependencies": {
"watchify": "~0.1.0"
},
"scripts": {
"watch-js": "watchify browser/main.js -o static/bundle.js -dv"
},
"default": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment