package.json 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "wrap-ansi",
  3. "version": "5.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. "engines": {
  13. "node": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "wrap",
  23. "break",
  24. "wordwrap",
  25. "wordbreak",
  26. "linewrap",
  27. "ansi",
  28. "styles",
  29. "color",
  30. "colour",
  31. "colors",
  32. "terminal",
  33. "console",
  34. "cli",
  35. "string",
  36. "tty",
  37. "escape",
  38. "formatting",
  39. "rgb",
  40. "256",
  41. "shell",
  42. "xterm",
  43. "log",
  44. "logging",
  45. "command-line",
  46. "text"
  47. ],
  48. "dependencies": {
  49. "ansi-styles": "^3.2.0",
  50. "string-width": "^3.0.0",
  51. "strip-ansi": "^5.0.0"
  52. },
  53. "devDependencies": {
  54. "ava": "^1.2.1",
  55. "chalk": "^2.4.2",
  56. "coveralls": "^3.0.3",
  57. "has-ansi": "^3.0.0",
  58. "nyc": "^13.3.0",
  59. "xo": "^0.24.0"
  60. }
  61. }