{
  "name": "@atlex/testing",
  "version": "0.2.2",
  "description": "Test utilities, fakes, and Vitest matchers for Atlex apps",
  "type": "module",
  "license": "MIT",
  "author": {
    "name": "Karen Hamazaspyan",
    "url": "https://github.com/khamazaspyan"
  },
  "keywords": [
    "atlex",
    "testing",
    "test",
    "unit-testing",
    "integration-testing",
    "http-testing",
    "api-testing",
    "test-fakes",
    "test-mocks",
    "vitest",
    "supertest-alternative",
    "http-client-test",
    "laravel-testing",
    "laravel-alternative",
    "nodejs",
    "javascript",
    "typescript"
  ],
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/atlex-framework/testing.git",
    "directory": "packages/testing"
  },
  "homepage": "https://atlex.dev",
  "bugs": {
    "url": "https://github.com/atlex-framework/testing/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@faker-js/faker": "^9.9.0",
    "supertest": "^7.1.0",
    "@atlex/auth": "0.2.2",
    "@atlex/cache": "0.2.2",
    "@atlex/core": "0.2.2",
    "@atlex/log": "0.2.2",
    "@atlex/mail": "0.2.2",
    "@atlex/notifications": "0.2.2",
    "@atlex/orm": "0.2.2",
    "@atlex/queue": "0.2.2",
    "@atlex/storage": "0.2.2"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./setup": {
      "types": "./dist/setup.d.ts",
      "default": "./dist/setup.js"
    },
    "./coverage": {
      "types": "./dist/vitest-config/vitest.shared.d.ts",
      "default": "./dist/vitest-config/vitest.shared.js"
    }
  },
  "devDependencies": {
    "@types/express": "^5.0.3",
    "@types/supertest": "^6.0.2",
    "express": "^5.1.0",
    "@vitest/coverage-v8": "^3.2.4",
    "knex": "^3.1.0",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "vitest run -c vitest.config.ts",
    "typecheck": "tsc --noEmit -p tsconfig.json"
  }
}