{ "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", "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 ", "license": "MIT", "bugs": { "url": "https://github.com/microsoft/etcd3/issues" }, "homepage": "https://github.com/microsoft/etcd3#readme", "devDependencies": { "@types/chai": "^4.2.12", "@types/chai-as-promised": "^7.1.3", "@types/chai-subset": "^1.3.3", "@types/mocha": "^8.0.3", "@types/node": "^14.11.1", "@types/sinon": "^9.0.5", "@typescript-eslint/eslint-plugin": "^4.1.1", "@typescript-eslint/parser": "^4.1.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "chai-subset": "^1.6.0", "change-case": "^4.1.1", "concurrently": "^5.3.0", "eslint": "^7.9.0", "eslint-plugin-header": "^3.1.0", "lodash": "^4.17.20", "mocha": "^8.1.3", "ncp": "^2.0.0", "node-fetch": "^2.6.1", "nyc": "^15.1.0", "prettier": "^2.1.2", "protobufjs": "^6.10.1", "rimraf": "^3.0.2", "sinon": "^9.0.3", "ts-node": "^9.0.0", "typedoc": " 0.17.0-3", "typescript": "^4.0.3" }, "dependencies": { "@grpc/grpc-js": "^1.1.7", "@grpc/proto-loader": "^0.5.5", "bignumber.js": "^9.0.0", "cockatiel": "^1.1.1" }, "prettier": { "singleQuote": true, "trailingComma": "all", "printWidth": 100, "arrowParens": "avoid" } }