package.json 977 B

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