package.json 905 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "supports-color",
  3. "version": "2.0.0",
  4. "description": "Detect whether a terminal supports color",
  5. "license": "MIT",
  6. "repository": "chalk/supports-color",
  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. ],
  16. "engines": {
  17. "node": ">=0.8.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "files": [
  23. "index.js"
  24. ],
  25. "keywords": [
  26. "color",
  27. "colour",
  28. "colors",
  29. "terminal",
  30. "console",
  31. "cli",
  32. "ansi",
  33. "styles",
  34. "tty",
  35. "rgb",
  36. "256",
  37. "shell",
  38. "xterm",
  39. "command-line",
  40. "support",
  41. "supports",
  42. "capability",
  43. "detect"
  44. ],
  45. "devDependencies": {
  46. "mocha": "*",
  47. "require-uncached": "^1.0.2"
  48. }
  49. }