package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "has-ansi",
  3. "version": "0.1.0",
  4. "description": "Check if a string has ANSI escape codes",
  5. "license": "MIT",
  6. "repository": "sindresorhus/has-ansi",
  7. "bin": {
  8. "has-ansi": "cli.js"
  9. },
  10. "author": {
  11. "name": "Sindre Sorhus",
  12. "email": "sindresorhus@gmail.com",
  13. "url": "http://sindresorhus.com"
  14. },
  15. "engines": {
  16. "node": ">=0.10.0"
  17. },
  18. "scripts": {
  19. "test": "mocha"
  20. },
  21. "files": [
  22. "index.js",
  23. "cli.js"
  24. ],
  25. "keywords": [
  26. "cli",
  27. "bin",
  28. "ansi",
  29. "styles",
  30. "color",
  31. "colour",
  32. "colors",
  33. "terminal",
  34. "console",
  35. "string",
  36. "tty",
  37. "escape",
  38. "shell",
  39. "xterm",
  40. "command-line",
  41. "text",
  42. "regex",
  43. "regexp",
  44. "re",
  45. "match",
  46. "test",
  47. "find",
  48. "pattern",
  49. "has"
  50. ],
  51. "dependencies": {
  52. "ansi-regex": "^0.2.0"
  53. },
  54. "devDependencies": {
  55. "mocha": "*"
  56. },
  57. "__npminstall_done": true,
  58. "_from": "has-ansi@0.1.0",
  59. "_resolved": "https://registry.npmmirror.com/has-ansi/-/has-ansi-0.1.0.tgz"
  60. }