-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.04 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
{
"name": "@midwayjs/grpc-helper",
"version": "1.1.0",
"description": "Midway gRPC helper",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest",
"cov": "jest --coverage",
"lint": "mwts lint",
"lint:fix": "mwts fix"
},
"bin": {
"tsproto": "bin/tsproto.js"
},
"keywords": [
"midway",
"gRPC",
"proto",
"generator"
],
"files": [
"bin",
"template.hbs",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"license": "MIT",
"devDependencies": {
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.0.11",
"mwts": "^1.0.5",
"typescript": "^4.8.4"
},
"dependencies": {
"chalk": "^4.0.0",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"protobufjs": "^6.9.0",
"yargs": "^15.3.1"
},
"author": "Harry Chen <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/midwayjs/grpc-helper.git"
}
}