package.json 822 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "io.cordova.hellocordova",
  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": "Caner",
  14. "license": "Apache-2.0",
  15. "devDependencies": {
  16. "cordova-android": "^9.1.0",
  17. "cordova-plugin-file": "^6.0.2",
  18. "cordova-plugin-media-capture": "^3.0.3",
  19. "cordova-plugin-webview-x5": "^0.3.2-alpha.1",
  20. "cordova-plugin-whitelist": "^1.3.5"
  21. },
  22. "cordova": {
  23. "plugins": {
  24. "cordova-plugin-whitelist": {},
  25. "cordova-plugin-webview-x5": {},
  26. "cordova-plugin-media-capture": {}
  27. },
  28. "platforms": [
  29. "android"
  30. ]
  31. }
  32. }