package.json 788 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "terminal-link",
  3. "version": "2.1.1",
  4. "description": "Create clickable links in the terminal",
  5. "license": "MIT",
  6. "repository": "sindresorhus/terminal-link",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "link",
  25. "hyperlink",
  26. "url",
  27. "ansi",
  28. "escape",
  29. "terminal",
  30. "term",
  31. "console",
  32. "command-line"
  33. ],
  34. "dependencies": {
  35. "ansi-escapes": "^4.2.1",
  36. "supports-hyperlinks": "^2.0.0"
  37. },
  38. "devDependencies": {
  39. "ava": "^2.3.0",
  40. "clear-module": "^4.0.0",
  41. "tsd": "^0.11.0",
  42. "xo": "^0.25.3"
  43. }
  44. }