-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
127 lines (127 loc) · 4.95 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
{
"name": "crypto-terminal",
"version": "1.6.0",
"description": "An open-source terminal application with which merchants can accept in-person cryptocurrency payments",
"private": true,
"app": {
"name": "CryptoTerminal",
"shortName": "CryptoT"
},
"main": "index.js",
"scripts": {
"android": "./node_modules/.bin/cordova run android --device",
"android:install": "adb install -r ./platforms/android/app/build/outputs/apk/debug/app-debug.apk",
"android-vm": "./node_modules/.bin/cordova run android",
"android-export-signing-certificate": "keytool -keystore android.keystore -alias cryptoterminal -exportcert -rfc -file cryptoterminal.crt",
"android-export-public-signing-key": "rm -rf cryptoterminal.crt; npm run android-export-signing-certificate | openssl x509 -pubkey -noout -in cryptoterminal.crt",
"android-generate-signing-key": "keytool -keystore android.keystore -genkey -v -alias cryptoterminal -keyalg RSA -keysize 2048 -validity 10000",
"build": "npm run build:prod",
"build:apk": "./scripts/build-signed-apk.sh",
"build:apk:debug": "./node_modules/.bin/cordova build android",
"build:dev": "NODE_ENV=dev make clean-light dev",
"build:prod": "NODE_ENV=prod make clean-light prod",
"build:test": "NODE_ENV=test make clean-light dev",
"build:screenshots": "npm run build:test && ./node_modules/.bin/mocha test/screenshots/ --timeout 5000 --recursive --reporter spec --ui bdd --exit",
"dev:android": "npm run build:dev && npm run build:apk:debug && npm run android:install",
"prod:android": "npm run build:prod && npm run build:apk:debug && npm run android:install",
"lint": "./node_modules/.bin/eslint --config .eslintrc.js exports/*.js js/**/*.js scripts/*.js test/**/*.js *.js",
"lnd-proxy": "node ./scripts/lnd-proxy.js",
"prepare:android": "./node_modules/.bin/cordova prepare android",
"pretest": "npm run lint",
"release:fdroid": "./scripts/fdroid-release.sh",
"test:fdroid": "{ git fetch upstream && git checkout fdroid && gradle build --project-dir ./platforms/android; }; git checkout master",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run build:dev && ./node_modules/.bin/mocha test/e2e/ --timeout 5000 --recursive --reporter spec --ui bdd --exit",
"test:unit": "npm run build:test && ./node_modules/.bin/mocha test/unit/ --timeout 5000 --recursive --reporter spec --ui bdd --exit"
},
"repository": {
"type": "git",
"url": "[email protected]:samotari/crypto-terminal.git"
},
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"contributors": [
{
"name": "Carlos Garcia Ortiz",
"email": "[email protected]"
},
{
"name": "Robin Cussol"
}
],
"license": "AGPL-3.0",
"homepage": "https://github.com/samotari/crypto-terminal",
"dependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"acorn": "6.1.0",
"acorn-dynamic-import": "4.0.0",
"android-versions": "1.4.0",
"async": "2.6.1",
"babelify": "10.0.0",
"backbone": "1.3.3",
"backbone.localstorage": "2.0.2",
"bignumber.js": "8.0.2",
"bitcoinjs-lib": "4.0.3",
"browserify": "16.2.3",
"bs58": "4.0.1",
"chai": "4.2.0",
"cordova": "9.0.0",
"cordova-android": "7.1.4",
"cordova-android-support-gradle-release": "3.0.1",
"cordova-plugin-file": "6.0.1",
"cordova-plugin-inappbrowser": "3.0.0",
"cordova-plugin-ionic-keyboard": "2.1.3",
"cordova-plugin-nativeaudio": "3.0.9",
"cordova-plugin-network-information": "2.0.2",
"cordova-plugin-whitelist": "1.3.3",
"core-js": "2.6.4",
"cssnano": "4.1.10",
"cz.blocshop.socketsforcordova": "https://github.com/chill117/sockets-for-cordova.git",
"eslint": "5.16.0",
"express": "4.16.4",
"handlebars": "4.7.1",
"jquery": "3.4.1",
"mkdirp": "0.5.1",
"mocha": "6.1.4",
"moment": "2.24.0",
"open-sans-fontface": "https://github.com/samotari/open-sans/archive/1.4.2.tar.gz",
"pem": "1.14.1",
"phonegap-nfc": "1.0.3",
"phonegap-plugin-barcodescanner": "8.0.1",
"postcss-cli": "6.1.1",
"qrcode": "1.3.3",
"read": "1.0.7",
"serve-static": "1.13.2",
"sockets-for-cordova": "git+https://github.com/chill117/sockets-for-cordova.git",
"uglify-js": "3.4.9",
"underscore": "1.9.1"
},
"cordova": {
"platforms": [
"android"
],
"plugins": {
"cordova-plugin-whitelist": {},
"phonegap-plugin-barcodescanner": {
"ANDROID_SUPPORT_V4_VERSION": "27.+"
},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-nativeaudio": {},
"phonegap-nfc": {},
"cordova-plugin-file": {},
"cordova-android-support-gradle-release": {
"ANDROID_SUPPORT_VERSION": "26.+"
},
"cz.blocshop.socketsforcordova": {},
"cordova-plugin-network-information": {}
}
},
"devDependencies": {
"puppeteer": "1.19.0",
"ws": "6.1.3"
}
}