package.json 908 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "boxen",
  3. "version": "5.1.2",
  4. "description": "Create boxes in the terminal",
  5. "license": "MIT",
  6. "repository": "sindresorhus/boxen",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && nyc ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "cli",
  25. "box",
  26. "boxes",
  27. "terminal",
  28. "term",
  29. "console",
  30. "ascii",
  31. "unicode",
  32. "border",
  33. "text"
  34. ],
  35. "dependencies": {
  36. "ansi-align": "^3.0.0",
  37. "camelcase": "^6.2.0",
  38. "chalk": "^4.1.0",
  39. "cli-boxes": "^2.2.1",
  40. "string-width": "^4.2.2",
  41. "type-fest": "^0.20.2",
  42. "widest-line": "^3.1.0",
  43. "wrap-ansi": "^7.0.0"
  44. },
  45. "devDependencies": {
  46. "ava": "^2.4.0",
  47. "nyc": "^15.1.0",
  48. "tsd": "^0.14.0",
  49. "xo": "^0.36.1"
  50. }
  51. }