Created
March 25, 2014 07:04
-
-
Save anthonyringoet/9756482 to your computer and use it in GitHub Desktop.
npm quick build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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