package.json 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "screenfull",
  3. "version": "5.0.2",
  4. "description": "Simple wrapper for cross-browser usage of the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/screenfull.js",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. "main": "dist/screenfull.js",
  14. "engines": {
  15. "node": ">=0.10.0"
  16. },
  17. "scripts": {
  18. "pretest": "grunt",
  19. "test": "xo && tsd"
  20. },
  21. "files": [
  22. "dist/screenfull.js",
  23. "dist/screenfull.d.ts"
  24. ],
  25. "keywords": [
  26. "browser",
  27. "fullscreen"
  28. ],
  29. "devDependencies": {
  30. "grunt": "^1.0.4",
  31. "grunt-contrib-concat": "^1.0.1",
  32. "grunt-contrib-copy": "^1.0.0",
  33. "grunt-contrib-uglify": "^4.0.1",
  34. "load-grunt-tasks": "^4.0.0",
  35. "tsd": "^0.7.1",
  36. "xo": "^0.16.0"
  37. },
  38. "types": "dist/screenfull.d.ts",
  39. "xo": {
  40. "envs": [
  41. "node",
  42. "browser"
  43. ]
  44. }
  45. }