{
  "name": "async-proxy",
  "version": "0.4.1",
  "description": "Create asynchronous nesting proxy in Node.js and browser",
  "keywords": [
    "async",
    "proxy"
  ],
  "files": [
    "lib",
    "dist"
  ],
  "main": "lib/es2018/index.js",
  "types": "lib/es2018/index.d.ts",
  "module": "dist/es2018/index.mjs",
  "browser": "dist/es2018/index.umd.js",
  "repository": "git@github.com:BlackGlory/async-proxy.git",
  "author": "BlackGlory <woshenmedoubuzhidao@blackglory.me>",
  "license": "MIT",
  "scripts": {
    "lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src __tests__",
    "test": "jest --no-cache --config jest.config.js",
    "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
    "coverage": "jest --coverage --config jest.config.js",
    "prepublishOnly": "yarn clean && yarn build && yarn bundle",
    "clean": "yarn clean:build && yarn clean:bundle",
    "clean:build": "rm -rf lib",
    "clean:bundle": "rm -rf dist",
    "build": "yarn build:es2015 && yarn build:es2018",
    "build:es2015": "tsc --project tsconfig.build.json --module commonjs --target es2015 --outDir lib/es2015 && tscpaths -p tsconfig.build.json -s ./src -o ./lib/es2015",
    "build:es2018": "tsc --project tsconfig.build.json --module commonjs --target es2018 --outDir lib/es2018 && tscpaths -p tsconfig.build.json -s ./src -o ./lib/es2018",
    "bundle": "rollup --config rollup.config.js",
    "release": "standard-version"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn lint && yarn test",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^11.0.1",
    "@rollup/plugin-typescript": "^8.1.0",
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.14",
    "@typescript-eslint/eslint-plugin": "^4.11.0",
    "@typescript-eslint/parser": "^4.11.0",
    "eslint": "^7.16.0",
    "husky": "^4.3.6",
    "jest": "^26.6.3",
    "rollup": "^2.35.1",
    "rollup-plugin-terser": "^7.0.2",
    "standard-version": "^9.0.0",
    "ts-jest": "^26.4.4",
    "tscpaths": "^0.0.9",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "object-path-operator": "^3.0.0"
  }
}
