-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "rest2grpc",
"version": "0.3.4",
"description": "Convert HTTP REST to gRPC",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"watch": "tsc --watch",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"ignore_posttest": "npm run lint",
"exampleRestServer": "node build/src/example/index.js",
"exampleGrpcServer": "node build/src/example/server.js",
"prepublishOnly": "npm test",
"_prepublishOnly": "npm test && npm run lint",
"_preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodoufu/rest2grpc.git"
},
"keywords": [
"rest",
"grpc",
"gateway",
"grpc-gateway",
"http"
],
"author": "Rodolfo Araujo",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodoufu/rest2grpc/issues"
},
"homepage": "https://github.com/rodoufu/rest2grpc#readme",
"devDependencies": {
"@types/jest": "^26.0.18",
"eslint": "^7.14.0",
"gts": "^3.0.2",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.2.1",
"@grpc/proto-loader": "^0.5.5",
"@types/protobufjs": "^6.0.0",
"@types/express": "^4.17.9",
"express": "^4.17.1",
"google-protobuf": "^3.14.0",
"js-yaml": "^3.14.1",
"@types/node": "^14.14.11"
}
}