{ | |
"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