{
  "name": "@postman/test-mcp-server",
  "version": "1.0.0",
  "description": "MCP Server for E2E testing of the Postman MCP Client",
  "license": "UNLICENSED",
  "author": "Postman Labs <mail@postmanlabs.com>",
  "homepage": "https://github.com/postman-eng/test-mcp-server/blob/main/README.md",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/postman-eng/test-mcp-server.git"
  },
  "type": "module",
  "bin": {
    "test-mcp-server": "dist/index.js"
  },
  "engines": {
    "node": ">=22.17.1"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc && shx cp instructions.md dist/ && shx chmod +x dist/*.js",
    "clean": "shx rm -rf dist *.tsbuildinfo",
    "clean:all": "shx rm -rf dist node_modules *.tsbuildinfo *.log logs",
    "lint": "eslint src/ e2e/",
    "lint:fix": "eslint src/ e2e/ --fix",
    "format": "prettier --write src/",
    "format:check": "prettier --check src/",
    "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
    "precommit": "npm run format &&npm run lint && npm run typecheck && npm run test",
    "start": "node dist/index.js",
    "start:stdio": "node dist/index.js stdio",
    "start:sse": "node dist/index.js sse",
    "start:streamableHttp": "node dist/index.js streamableHttp",
    "start:streamableHttp:auth": "node dist/index.js streamableHttp --auth",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:unit": "vitest run --dir src",
    "test:e2e": "vitest run --dir e2e",
    "test:coverage": "vitest run --coverage"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.25.1",
    "cors": "^2.8.5",
    "express": "^5.2.1",
    "jszip": "^3.10.1",
    "pino": "^10.1.0",
    "pino-pretty": "^13.1.3",
    "zod": "^4.2.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.17.0",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.6",
    "@types/node": "^22.17.1",
    "@types/supertest": "^6.0.3",
    "eslint": "^9.17.0",
    "prettier": "^3.4.2",
    "shx": "^0.4.0",
    "supertest": "^7.1.4",
    "typescript": "^5.6.2",
    "typescript-eslint": "^8.18.1",
    "vitest": "^4.0.16"
  },
  "main": "dist/index.js",
  "keywords": [
    "mcp",
    "test",
    "server"
  ],
  "types": "./dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/postman-eng/test-mcp-server/issues"
  }
}
