package.json 827 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "cli-tableau",
  3. "description": "Pretty unicode tables for the CLI",
  4. "version": "2.0.1",
  5. "engines": {
  6. "node": ">=8.10.0"
  7. },
  8. "author": {
  9. "name": "Guillermo Rauch",
  10. "email": "guillermo@learnboost.com"
  11. },
  12. "contributors": [
  13. {
  14. "name": "Sonny Michaud",
  15. "email": "Michaud.sonny@gmail.com"
  16. }
  17. ],
  18. "maintainers": [
  19. {
  20. "name": "soyuka",
  21. "email": "soyuka@gmail.com"
  22. }
  23. ],
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/Keymetrics/cli-table.git"
  27. },
  28. "keywords": [
  29. "cli",
  30. "colors",
  31. "table"
  32. ],
  33. "dependencies": {
  34. "chalk": "3.0.0"
  35. },
  36. "devDependencies": {
  37. "should": "~0.6",
  38. "mocha": "^7.1.1"
  39. },
  40. "main": "lib",
  41. "files": [
  42. "lib"
  43. ],
  44. "scripts": {
  45. "test": "mocha test/*"
  46. },
  47. "licence": "MIT"
  48. }