Skip to content

Instantly share code, notes, and snippets.

@silppuri
Created December 10, 2013 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silppuri/7886565 to your computer and use it in GitHub Desktop.
Save silppuri/7886565 to your computer and use it in GitHub Desktop.
{
"name": "",
"version": "0.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"watchify": "~0.3.0"
},
"dependencies": {
"browserify": "~2.35.4",
"uglify-js": "~2.3.6"
},
"scripts": {
"build-js": "browserify app/main.js | uglifyjs -mc > public/js/bundle.js",
"build-css": "sass --compass app/styles:public/styles",
"watch-js": "watchify --debug app/main.js -o public/js/bundle.js -dv",
"watch-css": "sass --watch --compass --sourcemap app/styles:public/styles",
"build": "npm run build-js && npm run build-css",
"watch": "npm run watch-js & npm run watch-css"
},
"keywords": [],
"author": "",
"license": ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment