package.json 785 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "window-size",
  3. "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.",
  4. "version": "0.1.0",
  5. "homepage": "https://github.com/jonschlinkert/window-size",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/jonschlinkert/window-size.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/window-size/issues"
  16. },
  17. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/jonschlinkert/window-size/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "main": "index.js",
  24. "engines": {
  25. "node": ">= 0.8.0"
  26. },
  27. "keywords": [
  28. "window",
  29. "console",
  30. "terminal",
  31. "tty"
  32. ]
  33. }