package.json 834 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "boxen",
  3. "version": "1.3.0",
  4. "description": "Create boxes in the terminal",
  5. "license": "MIT",
  6. "repository": "sindresorhus/boxen",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "cli",
  23. "box",
  24. "boxes",
  25. "terminal",
  26. "term",
  27. "console",
  28. "ascii",
  29. "unicode",
  30. "border",
  31. "text"
  32. ],
  33. "dependencies": {
  34. "ansi-align": "^2.0.0",
  35. "camelcase": "^4.0.0",
  36. "chalk": "^2.0.1",
  37. "cli-boxes": "^1.0.0",
  38. "string-width": "^2.0.0",
  39. "term-size": "^1.2.0",
  40. "widest-line": "^2.0.0"
  41. },
  42. "devDependencies": {
  43. "ava": "*",
  44. "nyc": "^11.0.3",
  45. "xo": "*"
  46. }
  47. }