package.json 733 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "cli-truncate",
  3. "version": "0.2.1",
  4. "description": "Truncate a string to a specific width in the terminal",
  5. "license": "MIT",
  6. "repository": "sindresorhus/cli-truncate",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "truncate",
  23. "ellipsis",
  24. "text",
  25. "limit",
  26. "slice",
  27. "cli",
  28. "terminal",
  29. "term",
  30. "shell",
  31. "width",
  32. "ansi"
  33. ],
  34. "dependencies": {
  35. "slice-ansi": "0.0.4",
  36. "string-width": "^1.0.1"
  37. },
  38. "devDependencies": {
  39. "ava": "*",
  40. "xo": "*"
  41. }
  42. }