-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.18 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
{
"name": "egg-logrotator",
"version": "3.2.0",
"description": "logrotator for egg",
"eggPlugin": {
"name": "logrotator",
"dep": [
"schedule"
]
},
"keywords": [
"egg",
"eggPlugin",
"egg-plugin",
"logger",
"logrotator"
],
"files": [
"app",
"utils.js",
"config",
"agent.js",
"app.js"
],
"dependencies": {
"moment": "^2.24.0",
"mz": "^2.7.0"
},
"devDependencies": {
"egg": "^2.0.0",
"egg-bin": "^4.13.0",
"egg-logger": "^2.4.1",
"egg-mock": "^3.22.2",
"eslint": "8",
"eslint-config-egg": "12",
"glob": "^7.1.3",
"mz-modules": "^2.1.0",
"pedding": "1"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-logrotator.git"
},
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-logrotator#readme",
"author": "tianyi.jiangty",
"license": "MIT"
}