UNPKG

depguard

Version:

A powerful CLI tool to check and update npm/yarn dependencies in your projects

73 lines (72 loc) 1.78 kB
{ "name": "depguard", "version": "1.0.10", "description": "A powerful CLI tool to check and update npm/yarn dependencies in your projects", "main": "dist/cli.js", "bin": { "depguard": "dist/cli.js" }, "scripts": { "build": "tsc", "start": "ts-node --require tsconfig-paths/register src/cli.ts", "lint": "eslint . --ext .ts", "format": "prettier . --write --ignore-path .gitignore", "test": "jest", "test:watch": "jest --watch", "prepublishOnly": "npm run build && npm test", "prepare": "husky install" }, "keywords": [ "dependencies", "cli", "npm", "yarn", "update", "package-manager", "dependency-manager", "depguard" ], "author": "Dmitriy Yakovlev", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/h1take/depguard.git" }, "bugs": { "url": "https://github.com/h1take/depguard/issues" }, "homepage": "https://github.com/h1take/depguard#readme", "dependencies": { "axios": "^1.9.0", "chalk": "^5.4.1", "commander": "^14.0.0", "inquirer": "^9.2.15", "ora": "^7.0.1", "semver": "^7.7.2" }, "devDependencies": { "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.12", "@types/semver": "^7.7.0", "@typescript-eslint/eslint-plugin": "^8.32.1", "@typescript-eslint/parser": "^8.32.1", "eslint": "^9.27.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-import": "^2.31.0", "eslint-plugin-node": "^11.1.0", "husky": "^9.0.11", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "engines": { "node": ">=14.0.0" }, "files": [ "dist", "README.md", "LICENSE" ] }