package.json 744 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "term-size",
  3. "version": "2.2.1",
  4. "description": "Reliably get the terminal window size (columns & rows)",
  5. "license": "MIT",
  6. "repository": "sindresorhus/term-size",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts",
  22. "vendor"
  23. ],
  24. "keywords": [
  25. "terminal",
  26. "size",
  27. "console",
  28. "window",
  29. "width",
  30. "height",
  31. "columns",
  32. "rows",
  33. "lines",
  34. "tty",
  35. "redirected"
  36. ],
  37. "devDependencies": {
  38. "ava": "^2.4.0",
  39. "execa": "^3.4.0",
  40. "tsd": "^0.11.0",
  41. "xo": "^0.25.3"
  42. }
  43. }