UNPKG

commander

Version:

the complete solution for node.js command-line programs

65 lines (64 loc) 1.63 kB
{ "name": "commander", "version": "15.0.0", "description": "the complete solution for node.js command-line programs", "keywords": [ "commander", "command", "option", "parser", "cli", "argument", "args", "argv" ], "author": "TJ Holowaychuk <tj@vision-media.ca>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/tj/commander.js.git" }, "scripts": { "check": "npm run check:type && npm run check:lint && npm run check:format", "check:format": "prettier --check .", "check:lint": "eslint .", "check:type": "npm run check:type:js && npm run check:type:ts", "check:type:ts": "tsd && tsc -p tsconfig.ts.json", "check:type:js": "tsc -p tsconfig.js.json", "fix": "npm run fix:lint && npm run fix:format", "fix:format": "prettier --write .", "fix:lint": "eslint --fix .", "test": "node --test && npm run check:type:ts", "test-all": "node --test && npm run check" }, "files": [ "index.js", "lib/*.js", "typings/index.d.ts", "package-support.json" ], "type": "module", "main": "./index.js", "exports": { ".": { "types": "./typings/index.d.ts", "default": "./index.js" } }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^22.7.4", "eslint": "^10.0.2", "eslint-config-prettier": "^10.0.1", "globals": "^17.3.0", "prettier": "^3.2.5", "tsd": "^0.33.0", "typescript": "^6.0.2", "typescript-eslint": "^8.12.2" }, "types": "typings/index.d.ts", "engines": { "node": ">=22.12.0" }, "support": true }