-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
70
71
{
"name": "egg-sofa-rpc",
"version": "3.0.0",
"description": "SOFARPC Plugin for egg",
"main": "index.js",
"files": [
"lib",
"config",
"app.js",
"agent.js"
],
"eggPlugin": {
"name": "sofaRpc",
"dependencies": [
"rpc"
]
},
"scripts": {
"autod": "autod",
"lint": "eslint . --ext .js",
"cov": "sh test/init.sh && TEST_TIMEOUT=20000 egg-bin cov",
"test": "npm run lint && npm run test-local",
"test-local": "sh test/init.sh && egg-bin test",
"pkgfiles": "egg-bin pkgfiles --check",
"ci": "npm run start:zk && npm run autod -- --check && npm run pkgfiles && npm run lint && npm run cov",
"contributors": "contributors -f plain -o AUTHORS",
"start:zk": "node test/scripts/start.js",
"stop:zk": "node test/scripts/stop.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-sofa-rpc.git"
},
"keywords": [
"egg",
"sofa",
"rpc"
],
"author": "gxcsoccer <gxcsoccer@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg-sofa-rpc/issues"
},
"homepage": "https://github.com/eggjs/egg-sofa-rpc#readme",
"dependencies": {
"antpb": "^1.0.0",
"sofa-bolt-node": "^2.0.0",
"sofa-rpc-node": "^1.18.0"
},
"devDependencies": {
"autod": "^3.1.0",
"autod-egg": "^1.1.0",
"contributors": "^0.5.1",
"egg": "^2.26.1",
"egg-bin": "^4.14.1",
"egg-mock": "^4.0.0",
"egg-rpc-base": "^1.3.1",
"egg-rpc-generator": "^1.3.1",
"eslint": "^7.3.1",
"eslint-config-egg": "^8.0.1",
"mz-modules": "^2.1.0",
"urllib": "^2.28.1"
},
"engines": {
"node": ">= 10.0.0"
},
"ci": {
"type": "travis",
"version": "10, 12, 14"
}
}