{
  "name": "@domoinc/ryuu-proxy",
  "version": "5.0.2",
  "description": "a middleware that provides a proxy for local domo app development",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "author": "AppTeam6 <Squad.AppTeam6@domo.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/DomoApps/ryuu-proxy.git"
  },
  "files": [
    "dist"
  ],
  "license": "MIT",
  "keywords": [
    "domo",
    "domo apps"
  ],
  "devDependencies": {
    "@types/busboy": "^1.5.4",
    "@types/chai": "^4.3.20",
    "@types/configstore": "^6.0.2",
    "@types/express": "^4.17.24",
    "@types/fs-extra": "^11.0.4",
    "@types/mocha": "^10.0.10",
    "@types/node": "^18.19.130",
    "@types/sinon": "^17.0.4",
    "@types/tough-cookie": "^4.0.5",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "chai": "^4.5.0",
    "eslint": "^8.57.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^18.0.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-prettier": "^5.5.4",
    "mocha": "^10.8.2",
    "mock-req": "^0.2.0",
    "nyc": "^17.1.0",
    "prettier": "^3.6.2",
    "ryuu": "^5.0.2",
    "sinon": "^17.0.2",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "axios": "^1.13.5",
    "axios-cookiejar-support": "^6.0.4",
    "busboy": "^1.6.0",
    "configstore": "^7.1.0",
    "dotenv": "^16.6.1",
    "form-data": "^4.0.4",
    "fs-extra": "^11.3.2",
    "glob": "^10.5.0",
    "https-proxy-agent": "^7.0.6",
    "ryuu-client": "^4.4.5",
    "tough-cookie": "^5.0.0"
  },
  "peerDependencies": {
    "express": "^4.17.0 || ^5.0.0",
    "ryuu": "^5.0.2"
  },
  "overrides": {
    "axios": "^1.13.5"
  },
  "scripts": {
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "test": "TS_NODE_PROJECT=tsconfig.test.json mocha && rm -rf test",
    "test:coverage": "nyc --reporter=text --reporter=html --reporter=json-summary --require ts-node/register --extension .ts mocha 'src/**/*.spec.ts' && rm -rf test",
    "test:coverage:open": "nyc --reporter=text --reporter=html --reporter=json-summary --require ts-node/register --extension .ts mocha 'src/**/*.spec.ts' && rm -rf test && open coverage/index.html",
    "tdd": "mocha --watch",
    "build": "rm -rf ./dist && tsc",
    "release:alpha": "pnpm run build && pnpm publish --tag alpha",
    "release:beta": "pnpm run build && pnpm publish --tag beta",
    "release:production": "pnpm run build && pnpm publish",
    "start": "pnpm run build -- -w",
    "clean": "rm -rf node_modules pnpm-lock.yaml && pnpm install",
    "bump:alpha": "pnpm run build && pnpm run bump -- --prerelease alpha",
    "bump:beta": "pnpm run build && pnpm run bump -- --prerelease beta",
    "bump": "standard-version"
  }
}