Skip to content

Instantly share code, notes, and snippets.

@martkoehler
Last active August 29, 2015 14:27
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 martkoehler/7377f7c9b129a4ff60bc to your computer and use it in GitHub Desktop.
Save martkoehler/7377f7c9b129a4ff60bc to your computer and use it in GitHub Desktop.
{
"name": "simplejsbuild",
"version": "0.1.0",
"description": "A simple javascript build",
"scripts": {
"build": "npm run clean && npm install && npm run lint && npm run copy && npm run replace",
"clean": "rm -rf dist node_modules",
"copy": "mkdir dist && cp html/index.html dist/index.html",
"lint": " jslint js/*.js",
"replace": "useref dist/index.html dist/index.html --js uglify"
},
"dependencies": {
"jslint": "0.9.1",
"useref-file": "0.2.1"
},
"private": true,
"analyze": true,
"license": "MIT"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment