{
  "name": "specshield",
  "version": "3.3.2",
  "description": "Contract compatibility testing for APIs — catch breaking OpenAPI changes before they reach your consumers, with can-i-deploy deploy gating and GitHub PR checks. (a.k.a. bidirectional contract testing.)",
  "main": "src/cli.js",
  "bin": {
    "specshield": "./bin/specshield.js"
  },
  "scripts": {
    "start": "node bin/specshield.js",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "lint": "eslint src tests --ext .js",
    "postinstall": "node scripts/welcome.js || true"
  },
  "keywords": [
    "openapi",
    "swagger",
    "api-diff",
    "openapi-diff",
    "swagger-diff",
    "breaking-change-detection",
    "api-breaking-changes",
    "api-compatibility",
    "contract-testing",
    "consumer-driven-contract",
    "api-contract",
    "contract-verification",
    "can-i-deploy",
    "ci-cd",
    "github-actions",
    "cli",
    "developer-tools",
    "openapi-compare",
    "swagger-compare",
    "pact-alternative",
    "api-contract-testing",
    "microservices",
    "api-quality",
    "api-governance",
    "bi-directional-contract-testing",
    "bdct",
    "pact-json",
    "github-app",
    "api-drift"
  ],
  "author": "SpecShield Software Private Limited",
  "license": "MIT",
  "files": [
    "bin",
    "src",
    "scripts",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "dependencies": {
    "@apidevtools/swagger-parser": "^10.1.1",
    "ajv": "^8.20.0",
    "ajv-formats": "^3.0.1",
    "axios": "^1.6.7",
    "chalk": "^4.1.2",
    "commander": "^12.0.0",
    "fs-extra": "^11.2.0",
    "js-yaml": "^4.1.0",
    "ora": "^5.4.1",
    "prompts": "^2.4.2"
  },
  "devDependencies": {
    "jest": "^29.7.0"
  },
  "jest": {
    "testEnvironment": "node",
    "testMatch": [
      "**/tests/**/*.test.js"
    ],
    "collectCoverageFrom": [
      "src/**/*.js"
    ]
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
