{
  "name": "@stuntman/server",
  "version": "1.0.2",
  "description": "Stuntman - HTTP proxy / mock server with API",
  "main": "dist/index.js",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/andrzej-woof/stuntman.git"
  },
  "homepage": "https://github.com/andrzej-woof/stuntman#readme",
  "bugs": {
    "url": "https://github.com/andrzej-woof/stuntman/issues"
  },
  "keywords": [
    "proxy",
    "mock",
    "http",
    "https",
    "server",
    "api",
    "e2e",
    "development",
    "rest",
    "gql",
    "end-to-end",
    "testing",
    "qa",
    "automated-testing",
    "stub",
    "functional"
  ],
  "author": "Andrzej Pasterczyk",
  "license": "MIT",
  "dependencies": {
    "@stuntman/shared": "^1.0.2",
    "async-await-mutex-lock": "^1.0.12",
    "express": "5.2.1",
    "glob": "13.0.3",
    "lru-cache": "11.2.6",
    "object-sizeof": "2.6.5",
    "pug": "3.0.3",
    "serialize-javascript": "7.0.2",
    "ts-import": "5.0.0-beta.1",
    "ts-jest": "^29.4.6",
    "undici": "7.22.0",
    "uuid": "13.0.0"
  },
  "devDependencies": {
    "@jest-mock/express": "^3.0.0",
    "@jest/globals": "30.2.0",
    "@prettier/plugin-pug": "3.4.2",
    "@types/express": "5.0.6",
    "@types/glob": "9.0.0",
    "@types/jest": "^30.0.0",
    "@types/serialize-javascript": "5.0.4",
    "@types/uuid": "11.0.0",
    "jest": "30.2.0",
    "prettier": "3.8.1",
    "typescript": "5.9.3"
  },
  "bin": {
    "stuntman": "./dist/bin/stuntman.js"
  },
  "files": [
    "src/**",
    "dist/**",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "overrides": {
    "ts-import": {
      "typescript": "5.4.3"
    }
  },
  "scripts": {
    "test": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test LOG_LEVEL=silent NODE_CONFIG_STRICT_MODE= SUPPRESS_NO_CONFIG_WARNING=1 jest --coverage",
    "clean": "rm -fr dist",
    "build": "tsc && tsc-alias && cp -rv src/api/webgui dist/api",
    "lint": "prettier --check \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\"",
    "lint:fix": "prettier --write \"./{src,test}/**/*\" && eslint \"./{src,test}/**/*\" --fix",
    "start": "node ./dist/bin/stuntman.js",
    "start:dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' ./src/bin/stuntman.ts",
    "start:debug": "node --inspect-brk=0.0.0.0 ./node_modules/.bin/ts-node --transpile-only ./src/bin/stuntman.ts"
  }
}