-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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": "grpclb",
"version": "1.3.4",
"description": "grpc load balancer for Node.js",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/* && tsc",
"prepublish": "npm run build",
"test": "jest -i",
"lint": "eslint src/ --ext ts && tsc --noEmit",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edvardchen/grpclb.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/edvardchen/grpclb/issues"
},
"homepage": "https://github.com/edvardchen/grpclb#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm t",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts}": [
"eslint"
],
"*.{ts,tsx,js,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@grpc/proto-loader": "^0.5.1",
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.16",
"@types/lodash": "^4.14.136",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.3.0",
"google-protobuf": "^3.9.0",
"grpc": "^1.22.2",
"husky": "^1.2.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1",
"why-is-node-running": "^2.1.0"
},
"peerDependencies": {
"grpc": "^1.22.2"
},
"dependencies": {
"debug": "^4.1.1",
"etcd3": "^0.2.13",
"lodash": "^4.17.15"
}
}