package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "cliui",
  3. "version": "5.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. "release": "standard-version"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "http://github.com/yargs/cliui.git"
  15. },
  16. "config": {
  17. "blanket": {
  18. "pattern": [
  19. "index.js"
  20. ],
  21. "data-cover-never": [
  22. "node_modules",
  23. "test"
  24. ],
  25. "output-reporter": "spec"
  26. }
  27. },
  28. "standard": {
  29. "ignore": [
  30. "**/example/**"
  31. ],
  32. "globals": [
  33. "it"
  34. ]
  35. },
  36. "keywords": [
  37. "cli",
  38. "command-line",
  39. "layout",
  40. "design",
  41. "console",
  42. "wrap",
  43. "table"
  44. ],
  45. "author": "Ben Coe <ben@npmjs.com>",
  46. "license": "ISC",
  47. "dependencies": {
  48. "string-width": "^3.1.0",
  49. "strip-ansi": "^5.2.0",
  50. "wrap-ansi": "^5.1.0"
  51. },
  52. "devDependencies": {
  53. "chai": "^4.2.0",
  54. "chalk": "^2.4.2",
  55. "coveralls": "^3.0.3",
  56. "mocha": "^6.0.2",
  57. "nyc": "^13.3.0",
  58. "standard": "^12.0.1",
  59. "standard-version": "^5.0.2"
  60. },
  61. "files": [
  62. "index.js"
  63. ],
  64. "engine": {
  65. "node": ">=6"
  66. }
  67. }