package.json 700 B

12345678910111213141516171819202122232425262728293031
  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-plugin-camera": "4.1.0"
  18. },
  19. "cordova": {
  20. "plugins": {
  21. "cordova-plugin-camera": {},
  22. "cordova-plugin-whitelist": {}
  23. },
  24. "platforms": [
  25. "android"
  26. ]
  27. },
  28. "devDependencies": {
  29. "cordova-plugin-whitelist": "^1.3.4"
  30. }
  31. }