Last active
August 29, 2015 14:28
-
-
Save hapticdata/842db37eb459e0177a51 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "template-budo", | |
"version": "1.0.0", | |
"description": "Enter your description here", | |
"main": "javascripts/index.js", | |
"author": "Kyle Phillips <[email protected]> (http://hapticdata.com/)", | |
"browserify": { | |
"transform": [ | |
[ | |
"jadeify", | |
{ | |
"compileDebug": true, | |
"pretty": true | |
} | |
] | |
] | |
}, | |
"scripts": { | |
"build": "browserify javascripts/index.js > public/bundle.js", | |
"copy": "rimraf public/assets/ && ncp assets/ public/assets", | |
"copy-watch": "watch \"npm run copy\" assets/ --wait=3 --ignoreDotFiles", | |
"budo": "budo javascripts/index.js:bundle.js --live -v --dir=public | garnish", | |
"jade": "jade views/pages/ --out public/ --obj locals.json --pretty", | |
"jade-watch": "jade views/pages/ --out public/ --obj locals.json --pretty --watch", | |
"less-watch": "autoless less/ public/", | |
"less": "lessc less/style.less public/style.css", | |
"watch": "npm run jade && npm run less && concurrent \"npm run copy-watch\" \"npm run jade-watch\" \"npm run budo\" \"npm run less-watch\"" | |
}, | |
"license": "MIT", | |
"dependencies": { | |
"lodash": "^3.6.0", | |
"jade": "^1.9.2", | |
"browserify": "^9.0.7", | |
"jadeify": "^4.1.0", | |
"animitter": "^0.5.0" | |
}, | |
"devDependencies": { | |
"autoless": "^0.1.7", | |
"budo": "^4.2.1", | |
"concurrently": "^0.1.1", | |
"garnish": "^2.3.0", | |
"less": "^2.5.1", | |
"ncp": "^2.0.0", | |
"rimraf": "^2.4.2", | |
"watch": "^0.16.0", | |
"watchify": "^3.1.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment