package.json 976 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "ansi-styles",
  3. "version": "5.2.0",
  4. "description": "ANSI escape codes for styling strings in the terminal",
  5. "license": "MIT",
  6. "repository": "chalk/ansi-styles",
  7. "funding": "https://github.com/chalk/ansi-styles?sponsor=1",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd",
  18. "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts"
  23. ],
  24. "keywords": [
  25. "ansi",
  26. "styles",
  27. "color",
  28. "colour",
  29. "colors",
  30. "terminal",
  31. "console",
  32. "cli",
  33. "string",
  34. "tty",
  35. "escape",
  36. "formatting",
  37. "rgb",
  38. "256",
  39. "shell",
  40. "xterm",
  41. "log",
  42. "logging",
  43. "command-line",
  44. "text"
  45. ],
  46. "devDependencies": {
  47. "ava": "^2.4.0",
  48. "svg-term-cli": "^2.1.1",
  49. "tsd": "^0.14.0",
  50. "xo": "^0.37.1"
  51. }
  52. }