{
  "name": "command-line-usage",
  "author": "Lloyd Brookes <opensource@75lb.com>",
  "version": "7.0.4",
  "description": "Generates command-line usage information",
  "repository": "https://github.com/75lb/command-line-usage",
  "license": "MIT",
  "type": "module",
  "exports": {
    "import": "./index.js",
    "require": "./dist/index.cjs"
  },
  "files": [
    "lib",
    "index.js",
    "dist"
  ],
  "keywords": [
    "terminal",
    "command line",
    "usage",
    "generator"
  ],
  "engines": {
    "node": ">=12.20.0"
  },
  "scripts": {
    "docs": "jsdoc2md --no-gfm index.js lib/**/*.js > doc/api.md; echo",
    "test": "npm run dist && npm run test:ci",
    "test:ci": "test-runner test/*.js test/*.cjs",
    "examples": "for FILE in example/*.js; do printf \"\n\n======== $FILE ========\n\n\"; node $FILE; done",
    "dist": "rollup -c"
  },
  "dependencies": {
    "array-back": "^6.2.2",
    "chalk-template": "^0.4.0",
    "table-layout": "^4.1.1",
    "typical": "^7.3.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "jsdoc-to-markdown": "^9.1.3",
    "rollup": "^4.59.0",
    "test-runner": "^0.10.1"
  },
  "standard": {
    "ignore": [
      "example",
      "dist"
    ]
  }
}
