package.json 986 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.2.0",
  5. "homepage": "https://github.com/jonschlinkert/window-size",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/window-size",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/window-size/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js",
  14. "cli.js"
  15. ],
  16. "main": "index.js",
  17. "engines": {
  18. "node": ">= 0.10.0"
  19. },
  20. "scripts": {
  21. "pretest": "semistandard",
  22. "test": "tap --coverage test.js"
  23. },
  24. "bin": "cli.js",
  25. "devDependencies": {
  26. "semistandard": "^7.0.2",
  27. "tap": "^2.2.1"
  28. },
  29. "keywords": [
  30. "console",
  31. "height",
  32. "resize",
  33. "size",
  34. "terminal",
  35. "tty",
  36. "width",
  37. "window"
  38. ],
  39. "verb": {
  40. "related": {
  41. "list": [
  42. "yargs",
  43. "lint-deps",
  44. "base-cli"
  45. ]
  46. }
  47. }
  48. }