{
  "name": "@team-supercharge/audit-ci-wrapper",
  "version": "3.1.3",
  "description": "",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "bin": "lib/index.js",
  "scripts": {
    "start": "tsc --watch",
    "build": "tsc",
    "audit": "npm run build && node lib/index.js",
    "lint": "eslint 'src/**/*.{js,ts}'",
    "lint:fix": "npm run lint -- --quiet --fix",
    "test": "jest --config jestconfig.json",
    "test:dev": "npm run test -- --watchAll",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "commitlint": "npx commitlint -f master -V",
    "create-release": "npx standard-version",
    "create-prerelease": "npx standard-version --prerelease alpha"
  },
  "engines": {
    "npm": "7.x || 8.x || 9.x || 10.x"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib",
    "!*.map",
    "!*.d.ts",
    "lib/index.d.ts",
    "configschema.json"
  ],
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.0",
    "@types/argparse": "2.0.10",
    "@types/event-stream": "4.0.0",
    "@types/jest": "27.5.0",
    "@types/node": "^20.10.7",
    "@types/semver": "7.3.9",
    "@typescript-eslint/eslint-plugin": "5.22.0",
    "@typescript-eslint/parser": "5.22.0",
    "eslint": "8.14.0",
    "eslint-config-prettier": "8.5.0",
    "eslint-plugin-prettier": "4.0.0",
    "husky": "4.3.8",
    "jest": "27.5.1",
    "lint-staged": "12.4.1",
    "prettier": "2.6.2",
    "standard-version": "9.3.2",
    "ts-jest": "27.1.4",
    "typescript": "4.6.4"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix"
    ]
  },
  "dependencies": {
    "argparse": "2.0.1",
    "chalk": "4.1.0",
    "semver": "7.5.3"
  }
}
