UNPKG

evsecrets

Version:

Detect environment variable secrets in your codebase before you push your code to GitHub.

10 lines (9 loc) 222 B
#!/usr/bin/env node /** * Entry point for the evsecrets CLI program. * Chris Joakim, 2025 */ import { EnvScanner } from "./EnvScanner"; import { FileUtil } from "./FileUtil"; export { EnvScanner }; export { FileUtil };