-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
83 lines (83 loc) · 1.82 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
74
75
76
77
78
79
80
81
82
83
{
"name": "grpc-helper",
"version": "0.5.1",
"description": "gRPC helper, an improved gRPC client for grpc-node",
"main": "dist/src/index.js",
"scripts": {
"test": "tsc && ava",
"coverage": "nyc npm test",
"lint": "tslint --format prose src/**/*.ts test/**/*.ts",
"coverage-ci": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"postbuild": "cp src/*.proto dist/src && cp -r test/fixtures dist/test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/xizhibei/grpc-helper.git"
},
"author": "Xu Zhipei <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=4"
},
"files": [
"dist/src"
],
"typings": "dist/src/index.d.ts",
"keywords": [
"grpc",
"helper",
"promise",
"load-balancer",
"typescript"
],
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
],
"include": [
"dist/src"
],
"all": true
},
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"async-retry": "^1.2.3",
"bluebird": "^3.5.0",
"brakes": "^2.6.0",
"debug": "^3.1.0",
"grpc": "^1.14.2",
"lodash": "^4.17.15",
"prom-client": "^10.2.3"
},
"devDependencies": {
"@types/async-retry": "^1.2.1",
"@types/bluebird-global": "^3.5.3",
"@types/debug": "^0.0.30",
"@types/lodash": "^4.14.91",
"@types/node": "^10.9.3",
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"mock-require": "^3.0.2",
"nyc": "^11.9.0",
"ts-node": "^7.0.1",
"tslint": "5.8.0",
"typescript": "^3.0.1"
}
}