fix(package): install properly after clean-all

This commit is contained in:
Jason Dreyzehner 2016-10-21 12:11:45 -04:00
parent d9d0a4d633
commit 0495a8cf9c
1 changed files with 3 additions and 3 deletions

View File

@ -7,13 +7,13 @@
"scripts": {
"postinstall": "npm run apply:copay && echo && echo \"Repo configured for standard Copay distribution. To switch to the BitPay distribution, run 'npm run apply:bitpay'.\" && echo",
"start": "echo && echo \"Choose a distribution by running 'npm run apply:copay' or 'npm run apply:bitpay'.\" && echo",
"apply:copay": "cd app-template && node apply.js copay && cd .. && npm i && npm run postapply",
"apply:bitpay": "cd app-template && node apply.js bitpay && cd .. && npm i && npm run postapply",
"apply:copay": "npm i fs-extra@0.30 && cd app-template && node apply.js copay && cd .. && npm i",
"apply:bitpay": "npm i fs-extra@0.30 && cd app-template && node apply.js bitpay && cd .. && npm i",
"unstage-package": "git reset package.json",
"clean-all": "git clean -dfx"
},
"dependencies": {
"fs-extra": "^0.30.0"
"pre-commit": "^1.1.3"
},
"license": "MIT",
"repository": {