{
  "name": "@ziul285/gitleaks",
  "version": "1.0.0",
  "description": "A custom Gitleaks-like scanner for detecting sensitive data.",
  "main": "index.js",
  "scripts": {
    "prepare": "husky",
    "lint": "biome check .",
    "format": "biome format .",
    "start": "node index.js",
    "test": "mocha tests/**/*.test.js --bail --recursive --require tests/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/IKuuhakuI/gitleaks"
  },
  "keywords": [
    "security",
    "scanner",
    "sensitive-data",
    "gitleaks",
    "git",
    "data-leak",
    "open-source",
    "cli-tool",
    "pattern-detection",
    "secret-detection",
    "nodejs",
    "javascript",
    "ci-cd"
  ],
  "author": "",
  "license": "MIT",
  "bin": {
    "gitleaks": "./index.js"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "chai": "4.3.7",
    "chai-as-promised": "^8.0.1",
    "husky": "^9.1.7",
    "lint-staged": "^15.4.2",
    "mocha": "^11.1.0",
    "sinon": "^19.0.2"
  },
  "files": [
    "core/",
    "utils/",
    "LICENSE",
    "index.js",
    "README.md",
    "reporter.js"
  ],
  "dependencies": {
    "minimatch": "^9.0.5",
    "simple-git": "^3.27.0",
    "yargs": "^17.7.2"
  }
}
