package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "wrap-ansi",
  3. "version": "2.1.0",
  4. "description": "Wordwrap a string with ANSI escape codes",
  5. "license": "MIT",
  6. "repository": "chalk/wrap-ansi",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "maintainers": [
  13. "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
  14. "Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
  15. "JD Ballard <i.am.qix@gmail.com> (github.com/qix-)",
  16. "Benjamin Coe <ben@npmjs.com> (github.com/bcoe)"
  17. ],
  18. "engines": {
  19. "node": ">=0.10.0"
  20. },
  21. "scripts": {
  22. "test": "xo && nyc ava",
  23. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  24. },
  25. "files": [
  26. "index.js"
  27. ],
  28. "keywords": [
  29. "wrap",
  30. "break",
  31. "wordwrap",
  32. "wordbreak",
  33. "linewrap",
  34. "ansi",
  35. "styles",
  36. "color",
  37. "colour",
  38. "colors",
  39. "terminal",
  40. "console",
  41. "cli",
  42. "string",
  43. "tty",
  44. "escape",
  45. "formatting",
  46. "rgb",
  47. "256",
  48. "shell",
  49. "xterm",
  50. "log",
  51. "logging",
  52. "command-line",
  53. "text"
  54. ],
  55. "dependencies": {
  56. "string-width": "^1.0.1",
  57. "strip-ansi": "^3.0.1"
  58. },
  59. "devDependencies": {
  60. "ava": "^0.16.0",
  61. "chalk": "^1.1.0",
  62. "coveralls": "^2.11.4",
  63. "has-ansi": "^2.0.0",
  64. "nyc": "^6.2.1",
  65. "strip-ansi": "^3.0.0",
  66. "xo": "*"
  67. }
  68. }