Skip to content

Instantly share code, notes, and snippets.

@louisremi
Created February 15, 2016 17:39
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 louisremi/5075960cb8d012397e60 to your computer and use it in GitHub Desktop.
Save louisremi/5075960cb8d012397e60 to your computer and use it in GitHub Desktop.
"devDependencies": {
"eslint": "latest",
"node-sass": "latest",
"browserify": "latest"
},
"scripts": {
"lint": "eslint **",
"build:css": "node-sass src/ -o dist/",
"build:js": "browserify src/main.js > dist/main.js",
"build": "npm run lint && npm run build:css && npm run build:js"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment