1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "helloworld",
- "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",
- "dependencies": {
- "cordova-android": "^8.1.0",
- "cordova-browser": "^6.0.0",
- "cordova-ios": "^5.0.1",
- "cordova-plugin-android-permissions": "^1.0.2",
- "cordova-plugin-contacts": "^3.0.1",
- "cordova-plugin-contacts-phonenumbers": "0.0.12"
- },
- "devDependencies": {
- "cordova-plugin-whitelist": "^1.3.4"
- },
- "cordova": {
- "plugins": {
- "cordova-plugin-whitelist": {},
- "cordova-plugin-contacts": {},
- "cordova-plugin-contacts-phonenumbers": {
- "CONTACTS_USAGE_DESCRIPTION": "This app needs contacts access"
- },
- "cordova-plugin-android-permissions": {}
- },
- "platforms": [
- "ios",
- "browser",
- "android"
- ]
- }
- }
|