etcd3/package.json

93 строки
2.5 KiB
JSON
Исходник Обычный вид История

2017-04-10 08:25:42 +03:00
{
"name": "etcd3",
2023-07-30 19:58:40 +03:00
"version": "1.1.2",
2017-04-10 08:25:42 +03:00
"description": "Node client for etcd3",
2020-06-16 08:56:18 +03:00
"main": "lib/index.js",
"typings": "lib/index.d.ts",
2017-04-10 08:25:42 +03:00
"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",
2020-11-29 07:10:17 +03:00
"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"
2017-04-10 08:25:42 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/etcd3.git"
2017-04-10 08:25:42 +03:00
},
2023-07-28 20:11:10 +03:00
"engines": {
"node": ">=16"
},
"nyc": {
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
2017-04-10 08:25:42 +03:00
"keywords": [
"etcd3",
"etcd",
"node",
"client",
"protobuf",
"proto"
],
"author": "Connor Peet <connor@peet.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/etcd3/issues"
2017-04-10 08:25:42 +03:00
},
"homepage": "https://github.com/microsoft/etcd3#readme",
2017-04-10 08:25:42 +03:00
"devDependencies": {
2023-07-28 20:07:55 +03:00
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.3",
2023-07-28 20:07:55 +03:00
"@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",
2023-07-28 20:07:55 +03:00
"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",
2023-07-28 20:07:55 +03:00
"node-fetch": "^3.3.2",
"nyc": "^15.1.0",
2023-07-28 20:07:55 +03:00
"prettier": "^3.0.0",
"protobufjs": "^7.2.4",
2023-07-28 20:07:55 +03:00
"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"
2017-04-10 08:25:42 +03:00
},
"dependencies": {
2023-07-28 20:07:55 +03:00
"@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"
2017-04-10 08:25:42 +03:00
}
}