-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.54 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
{
"name": "io.cordova.hellocordova",
"displayName": "HelloCordova",
"version": "1.0.0",
"description": "A sample Apache Cordova application that responds to the deviceready event.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Apache Cordova Team",
"license": "Apache-2.0",
"devDependencies": {
"@felicienfrancois/cordova-plugin-stepper": "^1.3.2",
"cordova-android": "^9.1.0",
"cordova-ios": "^7.1.1",
"cordova-plugin-add-swift-support": "^2.0.2",
"cordova-plugin-advanced-http": "^3.3.1",
"cordova-plugin-advanced-websocket": "^1.1.6",
"cordova-plugin-android-permissions": "^1.1.5",
"cordova-plugin-badge": "^0.8.9",
"cordova-plugin-battery-status": "^2.0.3",
"cordova-plugin-brightness": "^0.2.0",
"cordova-plugin-calltrap": "^0.0.4",
"cordova-plugin-camera": "^4.1.0",
"cordova-plugin-console": "^1.1.0",
"cordova-plugin-contacts": "^3.0.1",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-device-motion": "^2.0.1",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-geolocation": "^4.1.0",
"cordova-plugin-local-notification": "^0.9.0-beta.2",
"cordova-plugin-magnetometer": "^1.0.0",
"cordova-plugin-media": "^5.0.4",
"cordova-plugin-media-capture": "^3.0.3",
"cordova-plugin-phone-call": "^1.1.3",
"cordova-plugin-qrscanner": "^3.0.1",
"cordova-plugin-screen-orientation": "^3.0.2",
"cordova-plugin-shake": "^0.7.0",
"cordova-plugin-sms-receive": "^1.0.2",
"cordova-plugin-splashscreen": "^6.0.1",
"cordova-plugin-vibration": "^2.1.6",
"cordova-plugin-viewport": "^1.0.5",
"cordova-plugin-whitelist": "^1.3.5",
"cordova-plugin-x-socialsharing": "^6.0.4",
"cordova-plugin-x-toast": "^2.7.2",
"cordova-sms-plugin": "^1.0.1",
"es6-promise-plugin": "^4.2.2"
},
"cordova": {
"plugins": {
"es6-promise-plugin": {},
"cordova-plugin-shake": {},
"cordova-plugin-phone-call": {},
"cordova-plugin-magnetometer": {},
"cordova-plugin-geolocation": {
"GPS_REQUIRED": "true"
},
"cordova-plugin-device-motion": {},
"cordova-plugin-contacts": {},
"cordova-plugin-calltrap": {},
"cordova-plugin-brightness": {},
"cordova-plugin-battery-status": {},
"cordova-plugin-advanced-http": {},
"cordova-plugin-advanced-websocket": {},
"cordova-plugin-x-toast": {},
"cordova-plugin-sms-receive": {},
"cordova-sms-plugin": {},
"cordova-plugin-vibration": {},
"cordova-plugin-viewport": {},
"cordova-plugin-device": {},
"cordova-plugin-screen-orientation": {},
"@felicienfrancois/cordova-plugin-stepper": {},
"cordova-plugin-android-permissions": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-file": {},
"cordova-plugin-media": {
"KEEP_AVAUDIOSESSION_ALWAYS_ACTIVE": "NO"
},
"cordova-plugin-media-capture": {},
"cordova-plugin-camera": {
"ANDROID_SUPPORT_V4_VERSION": "27.+"
},
"cordova-plugin-console": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-badge": {},
"cordova-plugin-local-notification": {},
"cordova-plugin-x-socialsharing": {
"PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION": "This app requires photo library access to function properly.",
"PHOTO_LIBRARY_USAGE_DESCRIPTION": "This app requires photo library access to function properly."
}
},
"platforms": [
"ios",
"android"
]
}
}