{
  "name": "@soapjs/integr8",
  "version": "0.2.4",
  "description": "Framework-agnostic integration testing with Testcontainers",
  "homepage": "https://docs.soapjs.com",
  "repository": "https://github.com/soapjs/node-integr8",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "integr8": "dist/cli/index.js"
  },
  "scripts": {
    "build": "npm run clean && tsc --project tsconfig.build.json && npm run build-templates",
    "build-templates": "mkdir -p dist/templates && cp -r src/templates/**/*.hbs dist/templates/",
    "dev": "tsc --watch",
    "test": "jest",
    "test:e2e": "jest --config jest.e2e.config.js",
    "lint": "eslint src/**/*.ts",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "testing",
    "integration",
    "testcontainers",
    "api",
    "api design",
    "framework",
    "code generation",
    "typescript",
    "microservices",
    "backend",
    "e2e",
    "test automation",
    "ci-cd",
    "continuous integration",
    "api testing",
    "real environment",
    "isolation",
    "database state",
    "test scenarios",
    "mock",
    "parallel testing",
    "test generation"
  ],
  "author": "Radoslaw Kamysz <radoslaw.kamysz@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "axios": "^1.6.2",
    "chalk": "^4.1.2",
    "commander": "^11.1.0",
    "dockerode": "^4.0.2",
    "dotenv": "^16.3.1",
    "handlebars": "^4.7.8",
    "inquirer": "^8.2.6",
    "testcontainers": "^10.7.0",
    "yaml": "^2.3.4"
  },
  "devDependencies": {
    "@types/dockerode": "^3.3.25",
    "@types/inquirer": "^8.2.10",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.54.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.2"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "enginesStrict": true,
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ]
}
