"scripts": {
"lint": "jshint --verbose src/js/**.js",
"build": "npm-run-all build:*",
"watch": "npm-run-all --parallel watch:*",
"build:copy-css": "cpx 'src/css/**/*.*' temp/css",
"watch:copy-css": "cpx 'src/css/**/*.*' temp/css --watch",
"build:lint": "npm run lint",
"watch:lint": "npm run lint",
"build:browserify": "mkdir -p ./temp/js && browserify src/js/index.js -o temp/js/bundle.js",
"watch:browserify": "mkdir -p ./temp/js && watchify src/js/index.js -o temp/js/bundle.js",
"build:babel": "babel temp -d build",
"watch:babel": "babel temp -d build",
"test": "echo \"Error: no test specified\" && exit 1"
},