-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
29 lines (29 loc) · 963 Bytes
/
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
{
"name": "io.cordova.hellocordova",
"version": "1.0.0",
"displayName": "HelloCordova",
"cordova": {
"platforms": [
"ios",
"android",
"browser"
],
"plugins": {
"cordova-plugin-googlemaps": {
"LOCATION_WHEN_IN_USE_DESCRIPTION": "This app wants to get your location while this app runs only.",
"LOCATION_ALWAYS_USAGE_DESCRIPTION": "This app wants to get your location always, even this app runs in background."
},
"cordova-plugin-whitelist": {}
}
},
"scripts": {
"buildwww": "cordova build browser; rm -rf docs; cp -R platforms/browser/www docs; grep -rl '(YOUR_API_KEY_IS_HERE)' ./docs/ | xargs sed -i '' 's/(YOUR_API_KEY_IS_HERE)/AIzaSyBZamoub9SCWL2GriEBRSgLGVVrF0QPakk/g'"
},
"dependencies": {
"cordova-android": "^7.0.0",
"cordova-browser": "~5.0.4",
"cordova-ios": "^4.5.5",
"cordova-plugin-googlemaps": "^2.4.6",
"cordova-plugin-whitelist": "1"
}
}