-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.48 KB
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
{
"name": "egg-lookout",
"version": "2.0.0",
"description": "SOFALookout plugin for egg",
"main": "index.js",
"files": [
"app",
"lib",
"config",
"app.js"
],
"eggPlugin": {
"name": "lookout",
"optionalDependencies": [
"sofaRpc"
]
},
"scripts": {
"autod": "autod",
"lint": "eslint . --ext .js",
"cov": "sh test/init.sh && 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/eggjs/egg-lookout.git"
},
"keywords": [
"SOFALookout",
"metrics",
"eggjs"
],
"author": "gxcsoccer <gxcsoccer@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-lookout#readme",
"dependencies": {
"sofa-lookout-node": "^1.0.0"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"contributors": "^0.5.1",
"egg": "^2.9.1",
"egg-bin": "^4.7.1",
"egg-mock": "^3.17.2",
"egg-rpc-base": "^1.3.1",
"egg-rpc-generator": "^1.0.0",
"egg-sofa-rpc": "^2.0.0",
"eslint": "^5.0.1",
"eslint-config-egg": "^7.0.0",
"mz": "^2.7.0",
"mz-modules": "^2.1.0"
},
"engines": {
"node": ">= 8.0.0"
}
}