-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.28 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
{
"name": "egg-grpc-framework",
"version": "1.0.14",
"description": "gRPC framework for egg",
"homepage": "https://github.com/msmao/egg-grpc-framework.git",
"dependencies": {
"@grpc/grpc-js": "^1.1.5",
"@grpc/proto-loader": "^0.5.5",
"egg": "^2"
},
"devDependencies": {
"autod": "^3",
"autod-egg": "^1",
"egg-bin": "^4",
"egg-ci": "^1",
"egg-mock": "^4",
"eslint": "^7",
"eslint-config-egg": "^8.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint . --resolve-plugins-relative-to .",
"ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
"autod": "autod",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "12",
"type": "github"
},
"repository": {
"type": "git",
"url": "git@github.com:msmao/egg-grpc-framework.git"
},
"keywords": [
"grpc",
"egg-grpc",
"egg",
"egg-framework"
],
"author": "Jian",
"files": [
"app",
"config",
"lib",
"app.js",
"agent.js",
"index.js",
"README.md",
"README.zh-CN.md"
],
"eslintIgnore": [
"coverage",
"dist"
],
"license": "MIT"
}