Skip to content

Instantly share code, notes, and snippets.

@anthonyringoet
Created March 25, 2014 07:04
Show Gist options
  • Save anthonyringoet/9756482 to your computer and use it in GitHub Desktop.
Save anthonyringoet/9756482 to your computer and use it in GitHub Desktop.
npm quick build
{
"name": "foobar",
"version": "0.0.0",
"description": "foobar description",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-js": "watchify js/app.js -o js/bundle.js",
"build-js": "browserify js/app.js > js/bundle.js",
"start": "http-server .",
"start-dev": "npm run watch-js & npm start"
},
"author": "",
"license": "MIT",
"devDependencies": {
"http-server": "^0.6.1",
"watchify": "^0.6.3",
"browserify": "^3.33.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment