package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "com.izouma.pumpapp",
  3. "displayName": "pumpApp",
  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. "author": "Apache Cordova Team",
  11. "license": "Apache-2.0",
  12. "dependencies": {
  13. "cordova-android": "^6.3.0",
  14. "cordova-plugin-camera": "^4.0.3",
  15. "cordova-plugin-crosswalk-webview": "git+https://github.com/x1ongzhu/cordova-plugin-crosswalk-webview.git",
  16. "cordova-plugin-device": "^2.0.2",
  17. "cordova-plugin-inappbrowser": "^3.0.0",
  18. "cordova-plugin-qrcode-scanner": "git+https://github.com/x1ongzhu/cordova-plugin-qrcode-scanner.git",
  19. "cordova-plugin-remote-injection": "^0.5.2",
  20. "cordova-plugin-whitelist": "^1.3.3",
  21. "cordova-plugin-wkwebview-engine": "^1.1.4",
  22. "cordova-plugin-x-toast": "^2.6.2"
  23. },
  24. "cordova": {
  25. "plugins": {
  26. "cordova-plugin-whitelist": {},
  27. "cordova-plugin-inappbrowser": {},
  28. "cordova-plugin-camera": {},
  29. "cordova-plugin-device": {},
  30. "cordova-plugin-x-toast": {},
  31. "cordova-plugin-wkwebview-engine": {},
  32. "cordova-plugin-remote-injection": {},
  33. "cordova-plugin-crosswalk-webview": {
  34. "XWALK_VERSION": "23+",
  35. "XWALK_LITEVERSION": "xwalk_core_library_canary:17+",
  36. "XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect",
  37. "XWALK_MODE": "embedded",
  38. "XWALK_MULTIPLEAPK": "true"
  39. },
  40. "cordova-plugin-qrcode-scanner": {}
  41. },
  42. "platforms": [
  43. "android"
  44. ]
  45. }
  46. }