package.json 721 B

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