{
  "name": "etcd3",
  "version": "1.0.1",
  "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 ./proto/rpc.proto > src/rpc.ts && npm run fmt",
    "build:doc": "rimraf docs && typedoc --theme minimal --mode library --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"
  },
  "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.2.11",
    "@types/chai-as-promised": "^7.1.2",
    "@types/chai-subset": "^1.3.3",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.0.13",
    "@types/sinon": "^9.0.4",
    "@typescript-eslint/eslint-plugin": "^3.3.0",
    "@typescript-eslint/parser": "^3.3.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "chai-subset": "^1.6.0",
    "change-case": "^4.1.1",
    "concurrently": "^5.2.0",
    "eslint": "^7.2.0",
    "eslint-plugin-header": "^3.0.0",
    "lodash": "^4.17.15",
    "mocha": "^8.0.1",
    "ncp": "^2.0.0",
    "node-fetch": "^2.6.0",
    "nyc": "^15.1.0",
    "prettier": "^2.0.5",
    "protobufjs": "^6.9.0",
    "rimraf": "^3.0.2",
    "sinon": "^9.0.2",
    "ts-node": "^8.10.2",
    "typedoc": "^0.17.0-3",
    "typescript": "^3.9.5"
  },
  "dependencies": {
    "@grpc/grpc-js": "^1.0.5",
    "@grpc/proto-loader": "^0.5.4",
    "bignumber.js": "^9.0.0",
    "cockatiel": "^1.0.0"
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "all",
    "printWidth": 100,
    "arrowParens": "avoid"
  }
}
