This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
132 lines (132 loc) · 4.07 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
{
"name": "binary-ticktrade",
"version": "2.4.6",
"description": "Binary.com Tick Trade",
"main": "main.js",
"repository": {
"type": "git",
"url": "[email protected]:binary-com/mobile.git"
},
"private": true,
"dependencies": {
"bower": "^1.7.0",
"code-push": "^2.0.5",
"cordova-android": "8.0.0",
"cordova-plugin-app-version": "^0.1.9",
"cordova-plugin-background-mode": "git+https://github.com/morteza-binary/cordova-plugin-background-mode.git",
"cordova-plugin-cache-clear": "^1.3.7",
"cordova-plugin-code-push": "^1.9.2-beta",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-dialogs": "^2.0.1",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-file-transfer": "^1.7.1",
"cordova-plugin-google-analytics": "^1.7.11",
"cordova-plugin-inappbrowser": "^3.0.0",
"cordova-plugin-network-information": "^2.0.1",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-sslcertificatechecker": "~5.1.0",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-zip": "^3.1.0",
"express": "^4.13.3",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.1.0",
"ionic-plugin-deeplinks": "^1.0.15",
"ionic-plugin-keyboard": "^2.2.1",
"xml2js": "^0.4.16"
},
"devDependencies": {
"@ionic/v1-toolkit": "1.0.12",
"angular-mocks": "^1.5.11",
"babel-core": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"cheerio": "^0.22.0",
"del": "^2.2.0",
"electron-packager": "^8.5.1",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-angular": "^3.0.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"fs-extra": "^2.0.0",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-file": "^0.2.0",
"gulp-gh-pages": "^0.5.4",
"gulp-html-replace": "^1.5.5",
"gulp-minify": "0.0.5",
"gulp-ng-annotate": "^2.0.0",
"gulp-util": "^2.2.14",
"jasmine": "^3.1.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"lodash": "^4.17.13",
"prettier-eslint-cli": "^4.1.1",
"shelljs": "^0.8.3",
"sw-precache": "^5.2.1"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"com.ionic.keyboard"
],
"cordovaPlatforms": [
"ios",
"android"
],
"scripts": {
"postinstall": "./node_modules/bower/bin/bower install",
"format": "prettier-eslint --write \"www/js/**/*.js\"",
"test": "eslint www/js/"
},
"cordova": {
"plugins": {
"cordova-plugin-code-push": {},
"cordova-plugin-google-analytics": {},
"ionic-plugin-keyboard": {},
"ionic-plugin-deeplinks": {
"URL_SCHEME": "ticktrade",
"DEEPLINK_SCHEME": "https",
"DEEPLINK_HOST": "ticktrade.binary.com",
"ANDROID_PATH_PREFIX": "/",
"ANDROID_2_PATH_PREFIX": "/",
"ANDROID_3_PATH_PREFIX": "/",
"ANDROID_4_PATH_PREFIX": "/",
"ANDROID_5_PATH_PREFIX": "/",
"DEEPLINK_2_SCHEME": " ",
"DEEPLINK_2_HOST": " ",
"DEEPLINK_3_SCHEME": " ",
"DEEPLINK_3_HOST": " ",
"DEEPLINK_4_SCHEME": " ",
"DEEPLINK_4_HOST": " ",
"DEEPLINK_5_SCHEME": " ",
"DEEPLINK_5_HOST": " "
},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-device": {},
"cordova-plugin-network-information": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-app-version": {},
"cordova-plugin-sslcertificatechecker": {},
"cordova-plugin-background-mode": {},
"cordova-plugin-cache-clear": {}
},
"platforms": [
"android"
]
}
}