package.json 963 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "strip-ansi",
  3. "version": "7.1.2",
  4. "description": "Strip ANSI escape codes from a string",
  5. "license": "MIT",
  6. "repository": "chalk/strip-ansi",
  7. "funding": "https://github.com/chalk/strip-ansi?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. },
  23. "files": [
  24. "index.js",
  25. "index.d.ts"
  26. ],
  27. "keywords": [
  28. "strip",
  29. "trim",
  30. "remove",
  31. "ansi",
  32. "styles",
  33. "color",
  34. "colour",
  35. "colors",
  36. "terminal",
  37. "console",
  38. "string",
  39. "tty",
  40. "escape",
  41. "formatting",
  42. "rgb",
  43. "256",
  44. "shell",
  45. "xterm",
  46. "log",
  47. "logging",
  48. "command-line",
  49. "text"
  50. ],
  51. "dependencies": {
  52. "ansi-regex": "^6.0.1"
  53. },
  54. "devDependencies": {
  55. "ava": "^3.15.0",
  56. "tsd": "^0.17.0",
  57. "xo": "^0.44.0"
  58. }
  59. }