forked from bitpay/wallet
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
148 lines (148 loc) · 5.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "NavPay",
"description": "A Secure NavCoin Wallet",
"author": "NavPay",
"version": "5.0.1",
"keywords": [
"navcoin",
"wallet",
"nav",
"navpay"
],
"main": "www/index.html",
"title": "NavPay",
"window": {
"title": "NavPay - NavCoin Thin Client",
"icon": "www/img/app/icon.png",
"toolbar": false,
"show": true,
"visible": true,
"resizable": true,
"frame": true,
"width": 650,
"height": 650,
"min_width": 400,
"max_width": 800,
"min_height": 650,
"position": "center",
"fullscreen": false
},
"webkit": {
"page-cache": false,
"java": false,
"plugin": false
},
"dom_storage_quota": 200,
"id": "jid1-x7bV5evAaI1P9Q",
"homepage": "https://navcoin.org",
"license": "MIT",
"repository": {
"url": "git://github.com/navcoin/navpay.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/navcoin/navpay/issues"
},
"engines": {
"node": "6",
"npm": "3"
},
"dependencies": {
"adm-zip": "^0.4.7",
"angular": "1.4.6",
"angular-mocks": "1.4.10",
"asn1.js": "4.10.1",
"asn1.js-rfc5280": "^2.0.1",
"bezier-easing": "^2.0.3",
"bhttp": "^1.2.1",
"bitauth": "^0.2.1",
"bitcore-wallet-client": "git://github.com/navcoin/bitcore-wallet-client.git",
"bower": "^1.7.9",
"cordova-android": "5.1.1",
"cordova-custom-config": "^3.0.5",
"cordova-ios": "^4.5.5",
"cordova-plugin-qrscanner": "3.0.1",
"cordova-windows": "~5.0.0",
"coveralls": "^2.11.9",
"express": "^4.11.2",
"fileicon": "^0.2.2",
"fs": "0.0.2",
"fs-extra": "^0.30.0",
"grunt-angular-gettext": "^2.3.11",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^1.0.0",
"grunt-nw-builder": "^2.0.3",
"grunt-sass": "^1.2.0",
"node-sass": "^4.9.2",
"shelljs": "^0.3.0"
},
"scripts": {
"postinstall": "npm run bower",
"deploy:prod": "npm run build:www-release && firebase deploy -P prod",
"deploy:beta": "npm run build:www-beta && firebase deploy -P beta",
"start": "npm run build:www && ionic serve --nolivereload --nogulp -s --address 0.0.0.0",
"start:live": "npm run build:www && ionic serve --nogulp -s --address 0.0.0.0",
"start:ios": "npm run build:www && npm run build:ios && npm run open:ios",
"start:android": "npm run build:www && npm run build:android && npm run run:android",
"start:windows": "npm run build:www && npm run build:windows",
"start:desktop": "npm start",
"https": "go run ./https-server/go-proxy.go",
"watch": "grunt watch",
"build:www": "grunt beta",
"build:www-release": "grunt prod",
"build:www-beta": "grunt beta",
"build:ios": "npm run build:www-beta && cordova prepare ios && cordova build ios --debug",
"build:android": "npm run build:www-beta && cordova prepare android && cordova build android --debug",
"build:windows": "npm run build:www-beta && cordova prepare windows && cordova build windows -- --arch=\"ARM\"",
"build:ios-release": "npm run final:www && cordova prepare ios && cordova build ios --release",
"build:android-release": "npm run final:www && cordova prepare android && cordova build android --release",
"build:windows-release": "cordova prepare windows && cordova build windows --release --arch=\"ARM\"",
"build:desktop": "grunt desktop",
"build:osx": "grunt osx",
"bower": "bower install",
"open:ios": "open platforms/ios/*.xcodeproj",
"open:android": "open -a open -a /Applications/Android\\ Studio.app platforms/android",
"final:www": "npm run build:www-release",
"final:ios": "npm run final:www && npm run build:ios-release && npm run open:ios",
"final:android": "npm run final:www && npm run build:android-release && npm run sign:android && npm run run:android-release",
"final:windows": "npm run final:www && npm run build:windows-release",
"final:desktop": "npm run build:desktop && npm run build:osx",
"run:android": "cordova run android --device",
"run:android-release": "cordova run android --device --release",
"log:android": "adb logcat | grep chromium",
"sign:android": "rm -f platforms/android/build/outputs/apk/android-release-signed-aligned.apk; jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore ../cordova-keys/navpay.keystore -signedjar platforms/android/build/outputs/apk/android-release-signed.apk platforms/android/build/outputs/apk/android-release-unsigned.apk navpay && ~/Library/Android/sdk/build-tools/27.0.1/zipalign -v 4 platforms/android/build/outputs/apk/android-release-signed.apk platforms/android/build/outputs/apk/android-release-signed-aligned.apk",
"apply:copay": "npm i fs-extra && cd app-template && node apply.js copay && npm i && cordova prepare",
"apply:bitpay": "npm i fs-extra && cd app-template && node apply.js bitpay && npm i && cordova prepare",
"test": "echo \"no package tests configured\"",
"clean": "trash platforms && trash plugins && cordova prepare",
"clean-all": "git clean -dfx"
},
"devDependencies": {
"cordova": "^6.3.1",
"elementtree": "^0.1.7",
"grunt": "^1.0.1",
"grunt-asset-hash": "^0.1.9",
"ionic": "^2.1.0",
"load-grunt-tasks": "^3.5.2",
"lodash": "^4.3.0",
"plist": "^2.1.0",
"pre-commit": "^1.1.3",
"replace-in-file": "^3.2.0",
"tostr": "^0.1.0",
"trash-cli": "^1.4.0",
"xcode": "^1.0.0"
},
"cordova": {
"platforms": [
"ios",
"android",
"windows"
]
}
}