package.json 901 B

123456789101112131415161718192021222324252627
  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. "author": "Apache Cordova Team",
  11. "license": "Apache-2.0",
  12. "dependencies": {
  13. "cordova-android": "^7.1.4",
  14. "cordova-plugin-chrome-apps-system-network": "git+https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network.git",
  15. "cordova-plugin-diont": "git+https://github.com/willemmulder/Diont-for-Cordova.git",
  16. "cordova-plugin-whitelist": "^1.3.3"
  17. },
  18. "cordova": {
  19. "plugins": {
  20. "cordova-plugin-diont": {},
  21. "cordova-plugin-whitelist": {}
  22. },
  23. "platforms": [
  24. "android"
  25. ]
  26. }
  27. }