package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "name": "ansi-colors",
  3. "description": "Collection of ansi colors and styles.",
  4. "version": "1.1.0",
  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. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  10. ],
  11. "repository": "doowb/ansi-colors",
  12. "bugs": {
  13. "url": "https://github.com/doowb/ansi-colors/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js",
  18. "types/index.d.ts"
  19. ],
  20. "main": "index.js",
  21. "types": "./types/index.d.ts",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha && tsc --project types"
  27. },
  28. "dependencies": {
  29. "ansi-wrap": "^0.1.0"
  30. },
  31. "devDependencies": {
  32. "gulp-format-md": "^1.0.0",
  33. "mocha": "^3.5.3",
  34. "typescript": "^2.7.1"
  35. },
  36. "keywords": [
  37. "ansi-bgblack",
  38. "ansi-bgblue",
  39. "ansi-bgcyan",
  40. "ansi-bggreen",
  41. "ansi-bgmagenta",
  42. "ansi-bgred",
  43. "ansi-bgwhite",
  44. "ansi-bgyellow",
  45. "ansi-black",
  46. "ansi-blue",
  47. "ansi-bold",
  48. "ansi-cyan",
  49. "ansi-dim",
  50. "ansi-gray",
  51. "ansi-green",
  52. "ansi-grey",
  53. "ansi-hidden",
  54. "ansi-inverse",
  55. "ansi-italic",
  56. "ansi-magenta",
  57. "ansi-red",
  58. "ansi-reset",
  59. "ansi-strikethrough",
  60. "ansi-underline",
  61. "ansi-white",
  62. "ansi-yellow",
  63. "bgblack",
  64. "bgblue",
  65. "bgcyan",
  66. "bggreen",
  67. "bgmagenta",
  68. "bgred",
  69. "bgwhite",
  70. "bgyellow",
  71. "black",
  72. "blue",
  73. "bold",
  74. "cyan",
  75. "dim",
  76. "gray",
  77. "green",
  78. "grey",
  79. "hidden",
  80. "inverse",
  81. "italic",
  82. "magenta",
  83. "red",
  84. "reset",
  85. "strikethrough",
  86. "underline",
  87. "white",
  88. "yellow"
  89. ],
  90. "verb": {
  91. "toc": false,
  92. "layout": "default",
  93. "tasks": [
  94. "readme"
  95. ],
  96. "plugins": [
  97. "gulp-format-md"
  98. ],
  99. "lint": {
  100. "reflinks": true
  101. },
  102. "reflinks": [
  103. "verb-readme-generator",
  104. "verb"
  105. ],
  106. "related": {
  107. "list": [
  108. "ansi-bgblack",
  109. "ansi-bgblue",
  110. "ansi-bgcyan",
  111. "ansi-bggreen",
  112. "ansi-bgmagenta",
  113. "ansi-bgred",
  114. "ansi-bgwhite",
  115. "ansi-bgyellow",
  116. "ansi-black",
  117. "ansi-blue",
  118. "ansi-bold",
  119. "ansi-cyan",
  120. "ansi-dim",
  121. "ansi-gray",
  122. "ansi-green",
  123. "ansi-grey",
  124. "ansi-hidden",
  125. "ansi-inverse",
  126. "ansi-italic",
  127. "ansi-magenta",
  128. "ansi-red",
  129. "ansi-reset",
  130. "ansi-strikethrough",
  131. "ansi-underline",
  132. "ansi-white",
  133. "ansi-wrap",
  134. "ansi-yellow"
  135. ]
  136. }
  137. }
  138. }