pkg-health
Version:
A CLI tool to scan your project's dependencies and generate a health report with security, version, and license insights.
62 lines (61 loc) • 1.38 kB
JSON
{
"name": "pkg-health",
"version": "1.0.1",
"description": "A CLI tool to scan your project's dependencies and generate a health report with security, version, and license insights.",
"bin": {
"pkg-health": "bin/cli.js"
},
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node bin/cli.js",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [
"npm",
"dependencies",
"package-health",
"dependency-checker",
"security-scan",
"outdated-packages",
"cli-tool",
"node-cli",
"semver",
"license-check",
"dependency-audit",
"vulnerability-check",
"dependency-health",
"project-health",
"opensource"
],
"author": {
"name": "Vatsal Kachhadiya",
"url": "https://github.com/VatsalKachhadiya"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VatsalKachhadiya/pkg-health.git"
},
"bugs": {
"url": "https://github.com/VatsalKachhadiya/pkg-health/issues"
},
"homepage": "https://github.com/VatsalKachhadiya/pkg-health#readme",
"files": [
"bin/",
"src/"
],
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"minimist": "^1.2.8",
"semver": "^7.6.3"
}
}