{
  "name": "@fxtop/proxy",
  "version": "0.1.7",
  "license": "MIT",
  "author": "Louis",
  "homepage": "https://github.com/faxintan/proxy",
  "description": "a lightweight web proxy tool based on Nodejs",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "/dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/faxintan/proxy"
  },
  "publishConfig": {
    "access": "public",
    "registry": "http://registry.npmjs.org/"
  },
  "publisher": "faxintan",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watchAll",
    "test:cover": "jest --coverage",
    "type-check": "tsc --noEmit",
    "build:js": "rollup -c",
    "build:types": "tsc --emitDeclarationOnly",
    "build": "npm run build:types && npm run build:js",
    "build:watch": "rollup -c --watch",
    "pub": "rm -rf dist && npm run build && npm version patch && npm publish --access public"
  },
  "keywords": [
    "node",
    "nodejs",
    "proxy",
    "web-proxy",
    "http-proxy",
    "https-proxy",
    "http-server",
    "https-server",
    "mock",
    "mock-server"
  ],
  "dependencies": {
    "mkcert": "^1.4.0",
    "regedit": "^3.0.3"
  },
  "devDependencies": {
    "@babel/core": "^7.11.4",
    "@babel/plugin-proposal-class-properties": "^7.10.4",
    "@babel/plugin-transform-runtime": "^7.11.0",
    "@babel/preset-env": "^7.11.0",
    "@babel/preset-typescript": "^7.10.4",
    "@babel/runtime-corejs3": "^7.11.2",
    "@rollup/plugin-babel": "^5.2.1",
    "@rollup/plugin-commonjs": "^15.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@types/mkcert": "^1.2.0",
    "@types/node": "^14.14.9",
    "rollup": "^2.26.5",
    "rollup-plugin-terser": "^7.0.0",
    "typescript": "^4.0.2"
  }
}