eol-check
Version:
CLI tool to check End-of-Life (EOL) status of Node.js, package managers, operating systems, dependencies, and databases. Supports HTML reports and GitHub Actions.
62 lines (61 loc) • 1.66 kB
JSON
{
"name": "eol-check",
"version": "1.4.3",
"description": "CLI tool to check End-of-Life (EOL) status of Node.js, package managers, operating systems, dependencies, and databases. Supports HTML reports and GitHub Actions.",
"main": "dist/index.js",
"bin": {
"eol-check": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"precheck": "npm run build",
"check": "node dist/cli.js",
"check:version": "node dist/cli.js -V"
},
"keywords": [
"eol",
"end-of-life",
"cli",
"version-check",
"security"
],
"author": "Abhishek Panda <abhishekpanda0620@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/abhishekpanda0620/eol-check.git"
},
"bugs": {
"url": "https://github.com/abhishekpanda0620/eol-check/issues"
},
"homepage": "https://github.com/abhishekpanda0620/eol-check#readme",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/open": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"prettier": "^3.7.3",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.2",
"chalk": "^4.1.2",
"commander": "^14.0.2",
"open": "^11.0.0"
}
}