UNPKG

detect-secrets-js

Version:

A JavaScript implementation of Yelp's detect-secrets tool - no Python required

64 lines (63 loc) 1.63 kB
{ "name": "detect-secrets-js", "version": "2.2.1", "description": "JavaScript implementation of Yelp's detect-secrets with Gitleaks integration for comprehensive secret detection", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "detect-secrets-js": "bin/cli.js", "detect-secrets-js-dev": "bin/cli-dev.js" }, "scripts": { "build": "node scripts/build.js", "dev": "tsc --watch", "test": "jest", "prepublishOnly": "npm run build", "scan": "ts-node test/scan-test.ts", "scan-dev": "ts-node bin/cli-dev.js", "postinstall": "node scripts/install-gitleaks.js" }, "keywords": [ "security", "secrets", "scanner", "detect-secrets", "yelp", "gitleaks", "api-keys", "credentials", "security-scanner", "git-blame", "secret-detection", "git-scanner" ], "author": "Your Name <your.email@example.com> (https://your-website.com)", "license": "MIT", "dependencies": { "chalk": "^4.1.2", "commander": "^9.4.0", "ora": "^5.4.1", "pyodide": "^0.23.4" }, "devDependencies": { "@types/node": "^18.19.80", "copy-webpack-plugin": "^11.0.0", "ts-loader": "^9.4.1", "ts-node": "^10.9.2", "typescript": "^4.9.5", "webpack": "^5.74.0", "webpack-cli": "^4.10.0" }, "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "https://github.com/Expedey/detect-secrets-js.git" }, "bugs": { "url": "https://github.com/Expedey/detect-secrets-js/issues" }, "homepage": "https://github.com/Expedey/detect-secrets-js#readme", "type": "commonjs" }