UNPKG

endpoint-sentinel

Version:

User-friendly security scanner with interactive setup that scales from beginner to expert

97 lines (96 loc) 2.54 kB
{ "name": "endpoint-sentinel", "version": "1.0.3", "description": "User-friendly security scanner with interactive setup that scales from beginner to expert", "main": "dist/index.js", "bin": { "endpoint-sentinel": "dist/cli/index.js", "es": "dist/cli/index.js" }, "scripts": { "build": "tsc", "dev": "ts-node src/cli/index.ts", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "prepare": "npm run build", "start": "node dist/cli/index.js", "scan": "npm start -- scan", "quick": "npm start -- quick", "config": "npm start -- config", "list": "npm start -- list", "help": "npm start -- --help", "examples": "npm start -- examples" }, "keywords": [ "security", "scanner", "vulnerability", "cli", "endpoint", "typescript", "interactive", "user-friendly", "beginner-friendly", "security-testing", "penetration-testing", "web-security", "authentication", "configuration", "ethical-hacking" ], "author": "Endpoint Sentinel Team", "license": "MIT", "homepage": "https://github.com/BritishAmericqn/EndpointSecurityCLI#readme", "repository": { "type": "git", "url": "git+https://github.com/BritishAmericqn/EndpointSecurityCLI.git" }, "bugs": { "url": "https://github.com/BritishAmericqn/EndpointSecurityCLI/issues" }, "dependencies": { "commander": "^11.0.0", "axios": "^1.6.0", "cheerio": "^1.0.0-rc.12", "chalk": "^5.3.0", "ora": "^7.0.1", "inquirer": "^9.2.0", "winston": "^3.11.0", "joi": "^17.11.0", "tough-cookie": "^4.1.3", "url-parse": "^1.5.10", "mime-types": "^2.1.35", "lodash": "^4.17.21", "uuid": "^9.0.0" }, "devDependencies": { "@types/node": "^20.8.0", "@types/inquirer": "^9.0.3", "@types/tough-cookie": "^4.0.3", "@types/url-parse": "^1.4.8", "@types/mime-types": "^2.1.2", "@types/lodash": "^4.14.199", "@types/jest": "^29.5.5", "@types/uuid": "^9.0.0", "typescript": "^5.2.2", "jest": "^29.7.0", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "eslint": "^8.51.0", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "prettier": "^3.0.3" }, "engines": { "node": ">=18.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ] }