-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@zcong/node-grpc-health-check",
"version": "0.1.3",
"description": "Health check client and service for use with @grpc/grpc-js.",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build tsconfig.build.json && cp -a ./src/generated ./dist/",
"test": "run-s lint jest",
"test:cov": "run-s lint jest:cov",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write .",
"jest": "jest --forceExit",
"jest:cov": "npm run jest -- --coverage",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"lint-staged": "lint-staged",
"release": "js-release"
},
"types": "./dist/index.d.ts",
"author": "zcong1993",
"license": "MIT",
"devDependencies": {
"@grpc/grpc-js": "^1.3.7",
"@types/google-protobuf": "^3.15.5",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@zcong/js-release": "^0.2.5",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"grpc-tools": "^1.11.2",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lint-staged": "^13.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-protoc-gen": "^0.15.0",
"typescript": "^4.4.3"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/index.ts"
]
},
"lint-staged": {
"*": "prettier --write"
},
"dependencies": {
"google-protobuf": "^3.18.0"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.3.7"
},
"bugs": "https://github.com/zcong1993/node-grpc-health-check/issues",
"homepage": "https://github.com/zcong1993/node-grpc-health-check",
"repository": {
"type": "git",
"url": "git+https://github.com/zcong1993/node-grpc-health-check.git"
},
"keywords": [
"grpc",
"grpc-node",
"grpc-health"
]
}