package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "columnify",
  3. "version": "1.6.0",
  4. "description": "Render data in text columns. Supports in-column text-wrap.",
  5. "main": "columnify.js",
  6. "scripts": {
  7. "pretest": "npm prune",
  8. "test": "make prepublish && tape test/*.js | tap-spec",
  9. "bench": "npm test && node bench",
  10. "prepublish": "make prepublish"
  11. },
  12. "babel": {
  13. "presets": [
  14. "es2015"
  15. ]
  16. },
  17. "author": "Tim Oxley",
  18. "license": "MIT",
  19. "devDependencies": {
  20. "babel-cli": "^6.26.0",
  21. "babel-preset-es2015": "^6.3.13",
  22. "chalk": "^1.1.1",
  23. "tap-spec": "^5.0.0",
  24. "tape": "^4.4.0"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/timoxley/columnify.git"
  29. },
  30. "keywords": [
  31. "column",
  32. "text",
  33. "ansi",
  34. "console",
  35. "terminal",
  36. "wrap",
  37. "table"
  38. ],
  39. "bugs": {
  40. "url": "https://github.com/timoxley/columnify/issues"
  41. },
  42. "homepage": "https://github.com/timoxley/columnify",
  43. "engines": {
  44. "node": ">=8.0.0"
  45. },
  46. "dependencies": {
  47. "strip-ansi": "^6.0.1",
  48. "wcwidth": "^1.0.0"
  49. },
  50. "directories": {
  51. "test": "test"
  52. }
  53. }