package.json 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "nosleep.js",
  3. "version": "0.12.0",
  4. "author": "Rich Tibbett",
  5. "license": "MIT",
  6. "description": "Prevent display sleep and enable wake lock in any Android or iOS web browser",
  7. "keywords": [
  8. "nosleep",
  9. "wake lock",
  10. "wakelock",
  11. "screen",
  12. "display",
  13. "sleep"
  14. ],
  15. "main": "dist/NoSleep.min.js",
  16. "module": "src/index.js",
  17. "types": "nosleep.d.ts",
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/richtr/NoSleep.js.git"
  21. },
  22. "devDependencies": {
  23. "babel-core": "^6.26.3",
  24. "babel-loader": "^7.1.5",
  25. "babel-preset-env": "^1.7.0",
  26. "prettier": "^2.0.5",
  27. "terser-webpack-plugin": "^3.0.2",
  28. "webpack": "^4.44.0",
  29. "webpack-cli": "^3.3.11"
  30. },
  31. "homepage": "https://github.com/richtr/NoSleep.js",
  32. "bugs": {
  33. "url": "https://github.com/richtr/NoSleep.js/issues"
  34. },
  35. "scripts": {
  36. "lint": "prettier --check src",
  37. "build": "npm run lint && webpack"
  38. }
  39. }