Skip to content

Instantly share code, notes, and snippets.

@vasco3
Created October 4, 2015 01:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vasco3/d70c0200dfdf7a61f6f5 to your computer and use it in GitHub Desktop.
Save vasco3/d70c0200dfdf7a61f6f5 to your computer and use it in GitHub Desktop.
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-css": "node-sass scss/app.scss public/css/app.css",
"build-server": "babel -d ./build ./server -s",
"build": "npm run clean && npm run build-css && npm run build-server",
"lint": "eslint source/ --quiet",
"start": "node ./build/index.js",
"debug": "node --debug ./build/index.js",
"test": "for i in $(ls tests/); do babel-node \"./tests/${i}\" | faucet ; done",
"validate": "npm run lint; npm run test && npm outdated --depth 0"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment