dep-insight-cli
Version:
A powerful CLI tool for managing npm packages, checking dependencies, analyzing sizes, and ensuring license compliance.
90 lines (89 loc) • 2.4 kB
JSON
{
"name": "dep-insight-cli",
"version": "1.0.2",
"description": "A powerful CLI tool for managing npm packages, checking dependencies, analyzing sizes, and ensuring license compliance.",
"main": "bin/index.js",
"bin": {
"dep-insight": "bin/index.js",
"dep": "bin/index.js"
},
"scripts": {
"start": "node ./bin/index.js",
"dev": "nodemon ./bin/index.js",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run format",
"preversion": "npm run format",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"build": "npm run clean && npm run lint",
"clean": "rimraf dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaishnavhiren1993/dep-insight-cli.git"
},
"keywords": [
"npm",
"package-manager",
"dependencies",
"cli",
"package-manager",
"dependency-checker",
"license-checker",
"size-analyzer",
"npm-tools",
"package-management"
],
"author": "Hiren Vaishnav",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaishnavhiren1993/dep-insight-cli/issues"
},
"homepage": "https://github.com/vaishnavhiren1993/dep-insight-cli#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^1.6.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"cross-spawn": "^7.0.3",
"date-fns": "^2.30.0",
"dependency-tree": "^8.1.2",
"dotenv": "^16.4.7",
"execa": "^5.1.1",
"filesize": "^8.0.7",
"fuzzy": "^0.1.3",
"gauge": "^5.0.1",
"graphviz": "^0.0.9",
"inquirer": "^8.2.6",
"madge": "^6.1.0",
"mongoose": "^8.9.2",
"node-fetch": "^2.7.0",
"npm-run-path": "^4.0.1",
"npm-which": "^3.0.1",
"ora": "^5.4.1",
"package-json": "^8.1.1",
"pacote": "^17.0.6",
"pretty-bytes": "^5.6.0",
"semver": "^7.5.4",
"table": "^6.8.1",
"temp": "^0.9.4",
"tree-node-cli": "^1.6.0",
"which": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.10"
}
}