-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "sofa-bolt-node",
"version": "2.0.1",
"description": "bolt protocol nodejs implementation",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"autod": "autod",
"lint": "eslint . --ext .js",
"cov": "TEST_TIMEOUT=10000 egg-bin cov",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"pkgfiles": "egg-bin pkgfiles --check",
"ci": "npm run autod -- --check && npm run pkgfiles && npm run lint && npm run cov",
"contributors": "contributors -f plain -o AUTHORS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alipay/sofa-bolt-node.git"
},
"keywords": [
"sofa",
"bolt",
"rpc"
],
"author": "gxcsoccer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alipay/sofa-bolt-node/issues"
},
"homepage": "https://github.com/alipay/sofa-bolt-node#readme",
"dependencies": {
"byte": "^2.0.0",
"connection": "^1.1.0",
"crc": "^3.8.0",
"is-type-of": "^1.2.1",
"sdk-base": "^3.6.0",
"sofa-hessian-node": "^2.1.0",
"utility": "^1.16.3"
},
"devDependencies": {
"antpb": "^1.0.0",
"autod": "^3.1.0",
"await-event": "^2.1.0",
"benchmark": "^2.1.4",
"contributors": "^0.5.1",
"egg-bin": "^4.14.1",
"egg-ci": "^1.15.0",
"eslint": "^7.3.1",
"eslint-config-egg": "^8.0.1",
"js-to-java": "^2.5.0",
"long": "^4.0.0",
"mm": "^3.2.0",
"mz-modules": "^2.1.0",
"pump": "^3.0.0"
},
"engines": {
"node": ">= 10.0.0"
},
"ci": {
"version": "10, 12, 14"
}
}