{
  "name": "local-ssl-proxy",
  "version": "2.0.5",
  "author": "Cameron Hunter <hello@cameronhunter.co.uk>",
  "description": "Simple SSL HTTP proxy using a self-signed certificate. Intended for local development only.",
  "repository": {
    "type": "git",
    "url": "http://github.com/cameronhunter/local-ssl-proxy.git"
  },
  "license": "MIT",
  "bin": "build/main.js",
  "preferGlobal": true,
  "files": [
    "build",
    "resources"
  ],
  "scripts": {
    "start": "ts-node ./src/main.ts",
    "prebuild": "yarn clean",
    "build": "tsc && chmod +x ./build/main.js",
    "clean": "tsc --build --clean",
    "test": "jest",
    "prepublish": "yarn test && yarn build",
    "renew-certs": "cd resources && mkcert localhost"
  },
  "dependencies": {
    "ansi-colors": "^4.1.3",
    "commander": "^10.0.0",
    "http-proxy": "^1.18.1"
  },
  "devDependencies": {
    "@tsconfig/node-lts-strictest": "^18.12.1",
    "@types/http-proxy": "^1.17.10",
    "@types/jest": "^29.4.0",
    "@types/node": "^18.15.0",
    "jest": "^29.5.0",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.5"
  },
  "packageManager": "yarn@3.4.1",
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node"
  }
}