-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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": "egg-rpc-generator",
"version": "2.0.0",
"description": "RPC tools for egg framework",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"bin": {
"egg-rpc-generator": "bin/egg-rpc-generator"
},
"scripts": {
"lint": "eslint . --ext .js",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"ci": "egg-bin cov",
"contributors": "git-contributor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-rpc-generator.git"
},
"keywords": [
"egg",
"rpc",
"tool"
],
"author": "gxcsoccer <gxcsoccer@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg-rpc-generator/issues"
},
"homepage": "https://github.com/eggjs/egg-rpc-generator#readme",
"dependencies": {
"antpb": "^1.0.0",
"egg-utils": "^2.4.1",
"handlebars": "^4.0.12",
"interop-require": "^1.0.0",
"is-type-of": "^1.2.1",
"jar2proxy": "^1.0.3",
"jsdoc": "^3.5.5",
"maven": "^4.4.1",
"mkdirp": "^0.5.1",
"mz": "^2.7.0",
"mz-modules": "^2.1.0",
"nunjucks": "^3.1.7",
"rimraf": "^2.6.3",
"sdk-base": "^4.2.1"
},
"devDependencies": {
"egg": "^3.16.1",
"egg-bin": "^6.4.1",
"eslint": "^8.42.0",
"eslint-config-egg": "^12.2.1",
"git-contributor": "^2.1.5"
},
"engines": {
"node": ">= 14.17.0"
}
}