package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "ansi-regex",
  3. "version": "6.1.0",
  4. "description": "Regular expression for matching ANSI escape codes",
  5. "license": "MIT",
  6. "repository": "chalk/ansi-regex",
  7. "funding": "https://github.com/chalk/ansi-regex?sponsor=1",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "types": "./index.d.ts",
  16. "sideEffects": false,
  17. "engines": {
  18. "node": ">=12"
  19. },
  20. "scripts": {
  21. "test": "xo && ava && tsd",
  22. "view-supported": "node fixtures/view-codes.js"
  23. },
  24. "files": [
  25. "index.js",
  26. "index.d.ts"
  27. ],
  28. "keywords": [
  29. "ansi",
  30. "styles",
  31. "color",
  32. "colour",
  33. "colors",
  34. "terminal",
  35. "console",
  36. "cli",
  37. "string",
  38. "tty",
  39. "escape",
  40. "formatting",
  41. "rgb",
  42. "256",
  43. "shell",
  44. "xterm",
  45. "command-line",
  46. "text",
  47. "regex",
  48. "regexp",
  49. "re",
  50. "match",
  51. "test",
  52. "find",
  53. "pattern"
  54. ],
  55. "devDependencies": {
  56. "ansi-escapes": "^5.0.0",
  57. "ava": "^3.15.0",
  58. "tsd": "^0.21.0",
  59. "xo": "^0.54.2"
  60. }
  61. }