{
   "name": "cli-argv-util",
   "version": "1.5.3",
   "description": "Simple utility to parse command line parameters and flags (arguments vector)",
   "license": "MIT",
   "type": "module",
   "module": "dist/cli-argv-util.js",
   "types": "dist/cli-argv-util.d.ts",
   "exports": "./dist/cli-argv-util.js",
   "files": [
      "dist"
   ],
   "repository": {
      "type": "git",
      "url": "git+https://github.com/center-key/cli-argv-util.git"
   },
   "homepage": "https://github.com/center-key/cli-argv-util",
   "bugs": "https://github.com/center-key/cli-argv-util/issues",
   "docs": "https://github.com/center-key/cli-argv-util#readme",
   "author": "Center Key (https://centerkey.com)",
   "keywords": [
      "cli",
      "argv",
      "params",
      "flags"
   ],
   "jshintConfig": {
      "esversion": 11,
      "strict": "implied",
      "eqeqeq": true,
      "undef": true,
      "unused": true,
      "varstmt": true,
      "node": true,
      "mocha": true
   },
   "cliConfig": {
      "macros": {
         "html-filename": "file.html",
         "png-filename": "file.png",
         "lucky-number": "777"
      }
   },
   "runScriptsConfig": {
      "clean": [
         "rimraf build dist"
      ],
      "lint": [
         "jshint . --exclude-path .gitignore",
         "eslint --max-warnings 0"
      ],
      "build": [
         "tsc",
         "add-dist-header build dist"
      ]
   },
   "scripts": {
      "pretest": "run-scripts clean lint build",
      "test": "mocha spec"
   },
   "dependencies": {
      "chalk": "~5.6",
      "slash": "~5.1"
   },
   "devDependencies": {
      "@eslint/js": "~10.0",
      "@types/node": "~26.0",
      "add-dist-header": "~1.6",
      "assert-deep-strict-equal": "~1.2",
      "copy-file-util": "~1.3",
      "eslint": "~10.6",
      "jshint": "~2.13",
      "mocha": "~11.7",
      "rimraf": "~6.1",
      "run-scripts-util": "~1.3",
      "typescript": "~6.0",
      "typescript-eslint": "~8.62"
   }
}
