{
  "name": "github-sarif-validator-jest",
  "version": "0.0.3",
  "description": "A Jest package that allows you to validate a Sarif output is compatible for Github Code scanning",
  "main": "dist/valid-github-sarif-log.js",
  "types": "dist/src/valid-github-sarif-log.d.ts",
  "exports": {
    ".": {
      "import": "./dist/valid-github-sarif-log.js",
      "types": "./dist/src/valid-github-sarif-log.d.ts"
    }
  },
  "scripts": {
    "build:js": "esbuild src/valid-github-sarif-log.ts --bundle  --sourcemap --platform=node --target=node22 --format=esm --packages=external --outfile=dist/valid-github-sarif-log.js",
    "build:types": "tsc --emitDeclarationOnly",
    "build": "npm run build:js && npm run build:types",
    "test": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TomPeas/github-sarif-validator.git"
  },
  "keywords": [
    "jest",
    "jest-matcher",
    "sarif",
    "jest sarif"
  ],
  "author": "TomPeas",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/TomPeas/github-sarif-validator/issues"
  },
  "homepage": "https://github.com/TomPeas/github-sarif-validator#readme",
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@tsconfig/node20": "^20.1.4",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.5",
    "@types/sarif": "^2.1.7",
    "esbuild": "^0.24.2",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2"
  },
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1"
  },
  "files": [
    "dist",
    "schemas"
  ]
}
