forked from konsumer/grpc-dynamic-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.63 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
{
"name": "@exchangeunion/grpc-dynamic-gateway",
"version": "0.3.10",
"description": "Like grpc-gateway, but written in node and dynamic.",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"grpc-dynamic-gateway": "cli.js"
},
"scripts": {
"compile": "tsc",
"prepublishOnly": "npm run compile",
"test": "jest --notify --coverage",
"test:update": "npm test -- --updateSnapshot",
"test:watch": "npm test -- --watch",
"release": "release-it -p -n"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExchangeUnion/grpc-dynamic-gateway.git"
},
"keywords": [
"grpc",
"express",
"middleware",
"swagger",
"rest",
"json",
"protobuf"
],
"author": "David Konsumer <[email protected]>",
"contributors": [
"Daniel McNally <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ExchangeUnion/grpc-dynamic-gateway/issues"
},
"homepage": "https://github.com/ExchangeUnion/grpc-dynamic-gateway#readme",
"files": [
"cli.js",
"index.js",
"index.js.map",
"index.d.ts",
"README.md",
"LICENSE"
],
"dependencies": {
"@types/express": "^4.17.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"express": "^4.17.1",
"grpc": "^1.24.2",
"json-colorizer": "^1.1.0",
"protocol-buffers-schema": "^3.3.2",
"yargs": "^12.0.1"
},
"peerDependencies": {
"@types/express": "4.17.1",
"express": "4.17.1",
"grpc": "1.24.2"
},
"devDependencies": {
"@types/node": "^10.5.6",
"jest": "^24.1.0",
"release-it": "^12.4.3",
"typescript": "^3.0.1"
}
}