copay/package.json

100 lines
3.7 KiB
JSON
Raw Normal View History

{
"author": "BitPay",
"version": "0.14.0",
2014-09-29 08:12:38 -07:00
"keywords": [
"bitcoin",
2014-09-29 08:12:38 -07:00
"wallet",
"bitpay",
2014-09-29 08:12:38 -07:00
"copay",
"multisignature",
2015-03-06 07:00:10 -08:00
"bitcore"
2014-09-29 08:12:38 -07:00
],
"homepage": "https://github.com/bitpay/copay",
"license": "MIT",
2014-08-01 11:33:45 -07:00
"repository": {
"url": "git://github.com/bitpay/copay.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bitpay/copay/issues"
},
"dependencies": {
"adm-zip": "^0.4.7",
"angular": "1.4.6",
"angular-mocks": "1.4.10",
2016-10-07 17:03:51 -07:00
"bezier-easing": "^2.0.3",
"bhttp": "^1.2.1",
2016-10-07 15:21:46 -07:00
"bitauth": "^0.3.2",
2016-10-12 07:04:29 -07:00
"bitcore-wallet-client": "4.3.1",
"bower": "^1.7.9",
"chai": "^3.5.0",
"cordova-android": "5.1.1",
"cordova-custom-config": "^3.0.5",
"cordova-plugin-qrscanner": "^2.3.1",
2016-06-15 09:53:09 -07:00
"coveralls": "^2.11.9",
2015-03-06 07:00:10 -08:00
"express": "^4.11.2",
"fs": "0.0.2",
2016-08-10 13:35:40 -07:00
"fs-extra": "^0.30.0",
"grunt-angular-gettext": "^2.2.3",
2016-07-28 05:07:29 -07:00
"grunt-browserify": "^5.0.0",
2016-08-10 13:35:40 -07:00
"grunt-cli": "^1.2.0",
2016-07-28 05:07:29 -07:00
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
2016-08-01 07:12:39 -07:00
"grunt-contrib-watch": "^1.0.0",
2016-07-28 05:07:29 -07:00
"grunt-exec": "^1.0.0",
"grunt-karma": "^2.0.0",
"grunt-karma-coveralls": "^2.5.4",
2016-07-28 05:36:30 -07:00
"grunt-nw-builder": "^2.0.3",
"grunt-sass": "^1.2.0",
"karma": "^0.13.22",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"load-grunt-tasks": "^3.5.0",
"mocha": "^2.4.5",
"pbkdf2": "^3.0.4",
"phantomjs-prebuilt": "^2.1.7",
"shelljs": "^0.3.0"
2016-08-10 13:56:27 -07:00
},
"scripts": {
"preinstall": "bower install && npm i fs-extra",
"postinstall": "npm run apply:bitpay && cordova prepare",
"start": "npm run build:www && ionic serve --nolivereload --nogulp -s",
"start:ios": "npm run build:www && npm run build:ios && npm run open:ios",
2016-10-07 13:22:54 -07:00
"start:android": "npm run build:www && npm run build:android && npm run run:android",
"watch": "grunt watch",
"build:www": "grunt",
"build:www-release": "grunt prod",
"build:ios": "cordova prepare ios && cordova build ios --debug",
"build:android": "cordova prepare android && cordova build android --debug",
"build:ios-release": "cordova prepare ios && cordova build ios --release",
"build:android-release": "cordova prepare android && cordova build android --release",
"open:ios": "open platforms/ios/*.xcodeproj",
"open:android": "open -a open -a /Applications/Android\\ Studio.app platforms/android",
2016-10-07 13:22:54 -07:00
"final:www": "npm run clean-all && npm run build:www-release",
"final:ios": "npm run final:www && npm run build:ios-release && npm run open:ios",
2016-10-07 13:22:54 -07:00
"final:android": "npm run final:www && npm run build:android-release && npm run run:android",
"run:android": "cordova run android --device",
"log:android": "adb logcat | grep chromium",
"apply:copay": "cd app-template && node apply.js copay",
"apply:bitpay": "cd app-template && node apply.js bitpay",
"test": "./node_modules/.bin/grunt test-coveralls",
2016-10-07 13:22:54 -07:00
"clean": "trash platforms && trash plugins && npm run postinstall",
"clean-all": "git clean -dfx && npm install"
2016-08-10 13:56:27 -07:00
},
"devDependencies": {
"cordova": "^6.3.1",
"grunt": "^1.0.1",
"ionic": "^2.1.0",
"trash-cli": "^1.4.0",
"lodash": "^4.3.0"
}
2014-03-14 13:38:27 -07:00
}