copay/package.json

20 lines
1.0 KiB
JSON
Raw Normal View History

2017-07-27 09:03:53 -07:00
{
"name": "distribution-not-selected",
"description": "Choose a distribution by running 'npm run apply:copay' or 'npm run apply:bitpay'.",
"primary-package-json": "See the tempate in app-template/package.json",
"pre-commit": "unstage-package",
"changes": "changes to this file can be commited with the --no-verify option",
"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": "npm i fs-extra shelljs && cd app-template && node apply.js copay && cd .. && npm i",
"apply:bitpay": "npm i fs-extra shelljs && cd app-template && node apply.js bitpay && cd .. && npm i",
"unstage-package": "git reset package.json",
"clean-all": "git clean -dfx"
},
"license": "MIT",
"repository": {
2018-03-01 06:20:27 -08:00
"url": "git://github.com/bitpay/copay.git",
"type": "git"
}
2018-03-01 06:21:30 -08:00
}