package-detector
Version:
A fast and comprehensive Node.js CLI tool to analyze your project's package.json and detect various package-related issues
62 lines (61 loc) • 1.49 kB
JSON
{
"name": "package-detector",
"version": "1.0.2",
"description": "A fast and comprehensive Node.js CLI tool to analyze your project's package.json and detect various package-related issues",
"main": "dist/index.js",
"bin": {
"package-detector": "./dist/bin/index.js"
},
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"start": "node dist/bin/index.js",
"dev": "ts-node bin/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "echo \"No linter configured\"",
"clean": "rimraf dist"
},
"keywords": [
"cli",
"package",
"detector",
"unused",
"outdated",
"duplicates",
"heavy",
"dependencies",
"npm",
"analysis"
],
"author": "Avishek Devnath <avishekdevnath@gmail.com>",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^20.0.2",
"axios": "^1.10.0",
"chalk": "^4.1.2",
"simple-git": "^3.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.0.4",
"rimraf": "^5.0.10",
"ts-jest": "^29.4.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/avishekdevnath/package-detector.git"
},
"bugs": {
"url": "https://github.com/avishekdevnath/package-detector/issues"
},
"homepage": "https://github.com/avishekdevnath/package-detector#readme"
}