{
    "name": "harproxyserver",
    "version": "0.0.22",
    "description": "A simple proxy server that records and plays back HTTP requests and responses in HAR format.",
    "author": "Yaacov Zamir <kobi.zamir@gmail.com>",
    "license": "Apache-2.0",
    "main": "dist/index.min.js",
    "bin": {
        "harProxyServer": "dist/harProxyServer.js"
    },
    "files": [
        "dist"
    ],
    "exports": {
        ".": "./dist/index.js",
        "./harProxyServer": "./dist/harProxyServer.js"
    },
    "scripts": {
        "build": "tsc",
        "start": "node --loader=ts-node/esm --inspect src/harProxyServer.ts",
        "eslint": "eslint --ext .ts src",
        "test": "jest",
        "clean": "rm -rf dist node_modules",
        "docs": "typedoc"
    },
    "keywords": [
        "har",
        "proxy",
        "mock",
        "testing",
        "http",
        "middleware"
    ],
    "dependencies": {
        "express": "^4.19.2",
        "http-proxy-middleware": "^3.0.0",
        "yargs": "^17.7.2"
    },
    "devDependencies": {
        "@types/express": "^4.17.21",
        "@types/har-format": "^1.2.15",
        "@types/jest": "^29.5.0",
        "@types/node": "^20.12.7",
        "@types/yargs": "^17.0.32",
        "@typescript-eslint/eslint-plugin": "^7.6.0",
        "@typescript-eslint/parser": "^7.6.0",
        "eslint": "^8.56.0",
        "eslint-config-prettier": "^9.1.0",
        "eslint-plugin-import": "^2.29.1",
        "eslint-plugin-jest": "^28.2.0",
        "eslint-plugin-prettier": "^5.1.3",
        "eslint-plugin-testing-library": "^6.2.1",
        "jest": "^29.7.0",
        "prettier": "^3.2.5",
        "ts-jest": "^29.1.0",
        "ts-node": "^10.9.2",
        "typedoc": "^0.25.13",
        "typedoc-plugin-markdown": "^3.17.1",
        "typescript": "^5.4.5"
    }
}
