package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "cliui",
  3. "version": "6.0.0",
  4. "description": "easily create complex multi-column command-line-interfaces",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "standard",
  8. "test": "nyc mocha",
  9. "coverage": "nyc --reporter=text-lcov mocha | coveralls"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "http://github.com/yargs/cliui.git"
  14. },
  15. "config": {
  16. "blanket": {
  17. "pattern": [
  18. "index.js"
  19. ],
  20. "data-cover-never": [
  21. "node_modules",
  22. "test"
  23. ],
  24. "output-reporter": "spec"
  25. }
  26. },
  27. "standard": {
  28. "ignore": [
  29. "**/example/**"
  30. ],
  31. "globals": [
  32. "it"
  33. ]
  34. },
  35. "keywords": [
  36. "cli",
  37. "command-line",
  38. "layout",
  39. "design",
  40. "console",
  41. "wrap",
  42. "table"
  43. ],
  44. "author": "Ben Coe <ben@npmjs.com>",
  45. "license": "ISC",
  46. "dependencies": {
  47. "string-width": "^4.2.0",
  48. "strip-ansi": "^6.0.0",
  49. "wrap-ansi": "^6.2.0"
  50. },
  51. "devDependencies": {
  52. "chai": "^4.2.0",
  53. "chalk": "^3.0.0",
  54. "coveralls": "^3.0.3",
  55. "mocha": "^6.2.2",
  56. "nyc": "^14.1.1",
  57. "standard": "^12.0.1"
  58. },
  59. "files": [
  60. "index.js"
  61. ],
  62. "engine": {
  63. "node": ">=8"
  64. }
  65. }