package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. {
  2. "name": "ansi-colors",
  3. "description": "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).",
  4. "version": "4.1.3",
  5. "homepage": "https://github.com/doowb/ansi-colors",
  6. "author": "Brian Woodward (https://github.com/doowb)",
  7. "contributors": [
  8. "Brian Woodward (https://twitter.com/doowb)",
  9. "Jason Schilling (https://sourecode.de)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  11. "Jordan (https://github.com/Silic0nS0ldier)"
  12. ],
  13. "repository": "doowb/ansi-colors",
  14. "bugs": {
  15. "url": "https://github.com/doowb/ansi-colors/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js",
  20. "symbols.js",
  21. "types/index.d.ts"
  22. ],
  23. "main": "index.js",
  24. "types": "./types/index.d.ts",
  25. "engines": {
  26. "node": ">=6"
  27. },
  28. "scripts": {
  29. "test": "mocha"
  30. },
  31. "devDependencies": {
  32. "decache": "^4.5.1",
  33. "gulp-format-md": "^2.0.0",
  34. "justified": "^1.0.1",
  35. "mocha": "^6.1.4",
  36. "text-table": "^0.2.0"
  37. },
  38. "keywords": [
  39. "256",
  40. "ansi",
  41. "bgblack",
  42. "bgBlack",
  43. "bgblue",
  44. "bgBlue",
  45. "bgcyan",
  46. "bgCyan",
  47. "bggreen",
  48. "bgGreen",
  49. "bgmagenta",
  50. "bgMagenta",
  51. "bgred",
  52. "bgRed",
  53. "bgwhite",
  54. "bgWhite",
  55. "bgyellow",
  56. "bgYellow",
  57. "black",
  58. "blue",
  59. "bold",
  60. "cli",
  61. "clorox",
  62. "color",
  63. "colors",
  64. "colour",
  65. "command line",
  66. "command-line",
  67. "console",
  68. "cyan",
  69. "dim",
  70. "formatting",
  71. "gray",
  72. "green",
  73. "grey",
  74. "hidden",
  75. "inverse",
  76. "italic",
  77. "kleur",
  78. "log",
  79. "logging",
  80. "magenta",
  81. "red",
  82. "reset",
  83. "rgb",
  84. "shell",
  85. "str",
  86. "strikethrough",
  87. "string",
  88. "style",
  89. "styles",
  90. "terminal",
  91. "text",
  92. "tty",
  93. "underline",
  94. "white",
  95. "xterm",
  96. "yellow"
  97. ],
  98. "verb": {
  99. "toc": false,
  100. "layout": "default",
  101. "tasks": [
  102. "readme"
  103. ],
  104. "data": {
  105. "author": {
  106. "linkedin": "woodwardbrian",
  107. "twitter": "doowb"
  108. }
  109. },
  110. "plugins": [
  111. "gulp-format-md"
  112. ],
  113. "lint": {
  114. "reflinks": true
  115. },
  116. "related": {
  117. "list": [
  118. "ansi-wrap",
  119. "strip-color"
  120. ]
  121. },
  122. "reflinks": [
  123. "chalk",
  124. "colorette",
  125. "colors",
  126. "kleur"
  127. ]
  128. }
  129. }