dnsweeper
Version:
Advanced CLI tool for DNS record risk analysis and cleanup. Features CSV import for Cloudflare/Route53, automated risk assessment, and parallel DNS validation.
80 lines (79 loc) • 2.12 kB
JSON
{
"name": "dnsweeper",
"version": "1.0.0",
"description": "Advanced CLI tool for DNS record risk analysis and cleanup. Features CSV import for Cloudflare/Route53, automated risk assessment, and parallel DNS validation.",
"main": "dist/index.js",
"bin": {
"dnsweeper": "./dist/index.js"
},
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"prepublishOnly": "npm run build"
},
"keywords": [
"dns",
"cli",
"typescript",
"dns-analysis",
"dns-management",
"risk-assessment",
"csv-processing",
"cloudflare",
"route53",
"devops",
"network-tools",
"security-tools",
"dns-cleanup",
"dns-audit",
"infrastructure"
],
"repository": {
"type": "git",
"url": "https://github.com/[username]/dnsweeper.git"
},
"bugs": {
"url": "https://github.com/[username]/dnsweeper/issues"
},
"homepage": "https://github.com/[username]/dnsweeper#readme",
"author": "",
"license": "MIT",
"dependencies": {
"@types/papaparse": "^5.3.16",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^10.1.8",
"ora": "^8.0.1",
"papaparse": "^5.5.3"
},
"devDependencies": {
"@types/chardet": "^0.8.3",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"tsx": "^4.16.0",
"typescript": "^5.5.3",
"vitest": "^3.2.4"
}
}