package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "ansi-styles",
  3. "version": "4.3.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": "sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  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. "dependencies": {
  47. "color-convert": "^2.0.1"
  48. },
  49. "devDependencies": {
  50. "@types/color-convert": "^1.9.0",
  51. "ava": "^2.3.0",
  52. "svg-term-cli": "^2.1.1",
  53. "tsd": "^0.11.0",
  54. "xo": "^0.25.3"
  55. }
  56. }