package.json 750 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "me.yoqi.myapp",
  3. "displayName": "myApp",
  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-browser": "^6.0.0",
  18. "cordova-plugin-camera": "4.1.0"
  19. },
  20. "cordova": {
  21. "plugins": {
  22. "cordova-plugin-camera": {},
  23. "cordova-plugin-whitelist": {}
  24. },
  25. "platforms": [
  26. "android",
  27. "browser"
  28. ]
  29. },
  30. "devDependencies": {
  31. "cordova-plugin-whitelist": "^1.3.4"
  32. }
  33. }