package.json 894 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "widest-line",
  3. "version": "3.1.0",
  4. "description": "Get the visual width of the widest line in a string - the number of columns required to display it",
  5. "license": "MIT",
  6. "repository": "sindresorhus/widest-line",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "string",
  24. "character",
  25. "unicode",
  26. "width",
  27. "visual",
  28. "column",
  29. "columns",
  30. "fullwidth",
  31. "full-width",
  32. "full",
  33. "ansi",
  34. "escape",
  35. "codes",
  36. "cli",
  37. "command-line",
  38. "terminal",
  39. "console",
  40. "cjk",
  41. "chinese",
  42. "japanese",
  43. "korean",
  44. "fixed-width"
  45. ],
  46. "dependencies": {
  47. "string-width": "^4.0.0"
  48. },
  49. "devDependencies": {
  50. "ava": "^1.4.1",
  51. "tsd": "^0.7.1",
  52. "xo": "^0.24.0"
  53. }
  54. }