build(cordova): Begin basing cordova build on more standard config.xml
This completes the installations of cordova-plugin-qrscanner, including required changes to config.xml. Where possible, other plugins are now included with versioning in config.xml.
This commit is contained in:
parent
34197b4ae2
commit
15836bb817
9 changed files with 103 additions and 66 deletions
27
package.json
27
package.json
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
{
|
||||
"//":"PLEASE! Do not edit this file directly",
|
||||
"//":" Modify it at app-template/",
|
||||
"//":" Modify it at app-template/",
|
||||
|
||||
"name": "bitpay",
|
||||
"description": "The BitPay Bitcoin Wallet",
|
||||
"name": "wallet",
|
||||
"description": "Secure Bitcoin Storage",
|
||||
"author": "BitPay",
|
||||
"version": "0.13.0",
|
||||
"version": "0.6.0",
|
||||
"keywords": [
|
||||
"bitcoin",
|
||||
"wallet",
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
],
|
||||
"main": "public/index.html",
|
||||
"window": {
|
||||
"title": "BitPay - The BitPay Bitcoin Wallet",
|
||||
"title": "BitPay Wallet - Secure Bitcoin Storage",
|
||||
"icon": "./public/img/icons/icon-256.png",
|
||||
"toolbar": false,
|
||||
"show": true,
|
||||
|
|
@ -89,12 +89,17 @@
|
|||
"xcode": "^0.8.2"
|
||||
},
|
||||
"scripts": {
|
||||
"preinstall": "bower install && npm i fs-extra && cd app-template && node apply.js",
|
||||
"postinstall": "npm run build",
|
||||
"preinstall": "bower install && npm i fs-extra",
|
||||
"build": "grunt",
|
||||
"start": "node app.js",
|
||||
"apply:copay": "cd app-template && node apply.js",
|
||||
"apply:bitpay-wallet": "cd app-template && node apply.js bitpay-wallet",
|
||||
"start": "npm run build && node app.js",
|
||||
"watch": "grunt watch",
|
||||
"test": "./node_modules/.bin/grunt test-coveralls",
|
||||
"clean": "git clean -dfx"
|
||||
"clean": "git clean -dfx",
|
||||
"start:ios": "npm run build && cd cordova && trash project-ios && make ios && open project-ios/platforms/ios/BitPay\\ Wallet.xcodeproj"
|
||||
},
|
||||
"devDependencies": {}
|
||||
"devDependencies": {
|
||||
"trash-cli": "^1.4.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue