{
  "name": "etcd3",
  "version": "1.1.2",
  "description": "Node client for etcd3",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "test": "concurrently npm:test:lint npm:test:unit",
    "test:unit": "mocha",
    "test:cover": "nyc mocha",
    "test:lint": "eslint \"src/**/*.ts\"",
    "watch": "tsc --watch",
    "build:proto": "node ./bin/update-proto ./proto && node bin/generate-methods.js",
    "build:doc": "rimraf docs && typedoc --theme minimal --mode file --exclude \"src/test/*\" --excludePrivate --stripInternal --out ./docs ./src/index.ts && node bin/tame-typedoc",
    "build:ts": "tsc",
    "fmt": "prettier --write \"src/**/*.{ts,js}\" && npm run -s test:lint -- --fix",
    "prepare": "npm run -s build:ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/microsoft/etcd3.git"
  },
  "engines": {
    "node": ">=16"
  },
  "nyc": {
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "keywords": [
    "etcd3",
    "etcd",
    "node",
    "client",
    "protobuf",
    "proto"
  ],
  "author": "Connor Peet <connor@peet.io>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/microsoft/etcd3/issues"
  },
  "homepage": "https://github.com/microsoft/etcd3#readme",
  "devDependencies": {
    "@types/chai": "^4.3.5",
    "@types/chai-as-promised": "^7.1.5",
    "@types/chai-subset": "^1.3.3",
    "@types/mocha": "^10.0.1",
    "@types/node": "^20.4.5",
    "@types/sinon": "^10.0.15",
    "@typescript-eslint/eslint-plugin": "^6.2.0",
    "@typescript-eslint/parser": "^6.2.0",
    "chai": "^4.3.7",
    "chai-as-promised": "^7.1.1",
    "chai-subset": "^1.6.0",
    "change-case": "^4.1.2",
    "concurrently": "^8.2.0",
    "eslint": "^8.45.0",
    "eslint-plugin-header": "^3.1.1",
    "lodash": "^4.17.21",
    "mocha": "^10.2.0",
    "ncp": "^2.0.0",
    "node-fetch": "^3.3.2",
    "nyc": "^15.1.0",
    "prettier": "^3.0.0",
    "protobufjs": "^7.2.4",
    "rimraf": "^5.0.1",
    "rxjs": "^7.8.1",
    "sinon": "^15.2.0",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.9.1",
    "typedoc": "^0.24.8",
    "typedoc-plugin-no-inherit": "^1.4.0",
    "typescript": "^5.1.6"
  },
  "dependencies": {
    "@grpc/grpc-js": "^1.8.20",
    "@grpc/proto-loader": "^0.7.8",
    "bignumber.js": "^9.1.1",
    "cockatiel": "^3.1.1"
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "all",
    "printWidth": 100,
    "arrowParens": "avoid"
  }
}
