package.json 800 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "helloworld",
  3. "displayName": "HelloCordova",
  4. "version": "1.0.0",
  5. "description": "A sample Apache Cordova application that responds to the deviceready event.",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1"
  9. },
  10. "keywords": [
  11. "ecosystem:cordova"
  12. ],
  13. "author": "Apache Cordova Team",
  14. "license": "Apache-2.0",
  15. "dependencies": {
  16. "cordova-android": "^8.1.0",
  17. "cordova-ios": "^5.0.1",
  18. "cordova-plugin-camera": "^4.1.0"
  19. },
  20. "devDependencies": {
  21. "cordova-plugin-whitelist": "^1.3.4"
  22. },
  23. "cordova": {
  24. "plugins": {
  25. "cordova-plugin-whitelist": {},
  26. "cordova-plugin-camera": {
  27. "ANDROID_SUPPORT_V4_VERSION": "27.+"
  28. }
  29. },
  30. "platforms": [
  31. "ios",
  32. "android"
  33. ]
  34. }
  35. }