UNPKG

command-line-args

Version:

A mature, feature-complete library to parse command-line options.

71 lines (70 loc) 1.56 kB
{ "name": "command-line-args", "version": "6.0.2", "description": "A mature, feature-complete library to parse command-line options.", "repository": { "type": "git", "url": "git+https://github.com/75lb/command-line-args.git" }, "homepage": "https://github.com/75lb/command-line-args#readme", "bugs": { "url": "https://github.com/75lb/command-line-args/issues" }, "scripts": { "test": "npm run dist && npm run test:ci", "test:ci": "test-runner test/*.js test/*.cjs test/internals/*.js", "docs": "75lb-nature jsdoc2md index.js > doc/API.md && 75lb-nature jsdoc2md lib/option-definition.js > doc/option-definition.md", "dist": "75lb-nature cjs-build index.js" }, "type": "module", "exports": { "import": "./index.js", "require": "./dist/index.cjs" }, "keywords": [ "argv", "parse", "argument", "args", "option", "options", "parser", "parsing", "cli", "command", "line" ], "author": "Lloyd Brookes <opensource@75lb.com>", "license": "MIT", "engines": { "node": ">=12.20" }, "files": [ "index.js", "lib", "dist" ], "dependencies": { "array-back": "^6.2.3", "find-replace": "^5.0.2", "lodash.camelcase": "^4.3.0", "typical": "^7.3.0" }, "peerDependencies": { "@75lb/nature": "latest" }, "peerDependenciesMeta": { "@75lb/nature": { "optional": true } }, "standard": { "ignore": [ "dist" ], "envs": [] }, "devDependencies": { "test-runner": "^0.10.1" } }