-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "grpc-dynamic-gateway",
"version": "0.4.4",
"description": "Like grpc-gateway, but written in node and dynamic.",
"main": "index.js",
"bin": {
"grpc-dynamic-gateway": "cli.js"
},
"scripts": {
"test": "jest",
"test:update": "npm test -- --updateSnapshot",
"test:watch": "npm test -- --watch",
"release": "release-it -p -n"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konsumer/grpc-dynamic-gateway.git"
},
"keywords": [
"grpc",
"express",
"middleware",
"swagger",
"rest",
"json",
"protobuf"
],
"author": "David Konsumer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/konsumer/grpc-dynamic-gateway/issues"
},
"homepage": "https://github.com/konsumer/grpc-dynamic-gateway#readme",
"dependencies": {
"@grpc/proto-loader": "0.5.1",
"body-parser": "^1.18.2",
"chalk": "^3.0.0",
"express": "^4.16.3",
"grpc": "^1.24.3",
"js-yaml": "^3.14.0",
"json-colorizer": "^2.0.0",
"protocol-buffers-schema": "^3.3.2",
"yargs": "^14.0.0"
},
"devDependencies": {
"jest": "^26.1.0",
"release-it": "^13.6.5"
}
}