{ "name": "jsdoc-cli-wrapper", "version": "1.0.6", "description": "JSDoc command line interface wrapper", "main": "index.js", "bin": "./index.js", "types": "./types/index.d.ts", "scripts": { "lint": "eslint --color --max-warnings 0 .", "test": "vitest", "test:ci": "pnpm lint && pnpm typecheck && vitest run -c ci/vitest.config.js && pnpm jsdoc", "jsdoc": "node index.js -c jsdoc.json .", "typecheck": "npx tsc", "prepack": "npx rimraf types && npx tsc ./index.js --allowJs --declaration --declarationMap --emitDeclarationOnly --outDir types" }, "files": [ "lib/**", "types/**" ], "keywords": [ "jsdoc", "JavaScript" ], "author": "Mike Bland (https://mike-bland.com/)", "license": "MPL-2.0", "type": "module", "engines": { "node": ">=18.0.0" }, "homepage": "https://github.com/mbland/jsdoc-cli-wrapper", "repository": "https://github.com/mbland/jsdoc-cli-wrapper", "bugs": "https://github.com/mbland/jsdoc-cli-wrapper/issues", "devDependencies": { "@stylistic/eslint-plugin-js": "^1.5.3", "@types/node": "^20.11.3", "@vitest/coverage-istanbul": "^1.2.0", "@vitest/coverage-v8": "^1.2.0", "@vitest/ui": "^1.2.0", "eslint": "^8.56.0", "eslint-plugin-jsdoc": "^46.10.1", "eslint-plugin-vitest": "^0.3.20", "jsdoc": "^4.0.2", "rimraf": "^5.0.5", "typescript": "^5.3.3", "vitest": "^1.2.0" } }