package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "keywords": [
  11. "ecosystem:cordova"
  12. ],
  13. "author": "Apache Cordova Team",
  14. "license": "Apache-2.0",
  15. "dependencies": {
  16. "cordova": "^11.1.0",
  17. "cordova-plugin-android-wifi-lock": "1.0.0",
  18. "cordova-plugin-network-information": "^2.0.2"
  19. },
  20. "devDependencies": {
  21. "cordova-android": "^12.0.1",
  22. "cordova-browser": "^6.0.0",
  23. "cordova-plugin-music-controls2": "^3.0.7",
  24. "cordova-plugin-powermanagement-orig": "git+https://github.com/Viras-/cordova-plugin-powermanagement.git"
  25. },
  26. "cordova": {
  27. "plugins": {
  28. "cordova-plugin-network-information": {},
  29. "at.gofg.sportscomputer.powermanagement": {},
  30. "cordova-plugin-android-wifi-lock": {},
  31. "cordova-plugin-music-controls2": {}
  32. },
  33. "platforms": [
  34. "browser",
  35. "android"
  36. ]
  37. }
  38. }