supamend
Version:
Pluggable DevSecOps Security Scanner with 10+ scanners and multiple reporting channels
103 lines (102 loc) • 2.47 kB
JSON
{
"name": "supamend",
"version": "1.0.0-beta.1",
"description": "Pluggable DevSecOps Security Scanner with 10+ scanners and multiple reporting channels",
"main": "dist/index.js",
"bin": {
"supamend": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"validate": "npm run lint && npm run test && npm run build",
"prepack": "npm run build",
"publish:beta": "npm publish --tag beta",
"publish:latest": "npm publish"
},
"keywords": [
"security",
"devsecops",
"scanner",
"vulnerability",
"audit",
"gitleaks",
"bandit",
"trivy",
"semgrep",
"checkov",
"cli",
"typescript",
"sast",
"secrets",
"docker",
"infrastructure",
"github-actions",
"slack",
"discord",
"teams"
],
"homepage": "https://github.com/zmelliti/supamend",
"repository": {
"type": "git",
"url": "https://github.com/zmelliti/supamend.git"
},
"bugs": {
"url": "https://github.com/zmelliti/supamend/issues"
},
"author": "Zied MELLITI <zied.melliti.work@gmail.com>",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"ROADMAP.md"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@slack/web-api": "^6.10.0",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^14.0.0",
"discord.js": "^14.14.1",
"fs-extra": "^11.3.0",
"handlebars": "^4.7.8",
"inquirer": "^8.2.6",
"nodemailer": "^6.9.7",
"ora": "^5.4.1",
"simple-git": "^3.20.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.14",
"@types/node": "^20.8.0",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}