Açıklama Yok

package.json 822B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "ansi-regex",
  3. "version": "0.2.1",
  4. "description": "Regular expression for matching ANSI escape codes",
  5. "license": "MIT",
  6. "repository": "sindresorhus/ansi-regex",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "ansi",
  23. "styles",
  24. "color",
  25. "colour",
  26. "colors",
  27. "terminal",
  28. "console",
  29. "cli",
  30. "string",
  31. "tty",
  32. "escape",
  33. "formatting",
  34. "rgb",
  35. "256",
  36. "shell",
  37. "xterm",
  38. "command-line",
  39. "text",
  40. "regex",
  41. "regexp",
  42. "re",
  43. "match",
  44. "test",
  45. "find",
  46. "pattern"
  47. ],
  48. "devDependencies": {
  49. "mocha": "*"
  50. }
  51. }