-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.05 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
{
"name": "egg-schedule",
"version": "4.0.1",
"description": "schedule plugin for egg, support corn job.",
"eggPlugin": {
"name": "schedule"
},
"files": [
"app",
"lib",
"config",
"agent.js",
"app.js"
],
"repository": {
"type": "git",
"url": "git@github.com:eggjs/egg-schedule.git"
},
"keywords": [
"egg",
"egg-plugin",
"eggPlugin",
"schedule",
"cron"
],
"dependencies": {
"cron-parser": "^2.16.3",
"humanize-ms": "^1.2.1",
"is-type-of": "^1.2.1",
"safe-timers": "^1.1.0",
"utility": "^1.16.3"
},
"devDependencies": {
"egg": "^3.7.0",
"egg-bin": "^5.5.0",
"egg-mock": "^5.3.0",
"egg-tracer": "^1.1.0",
"eslint": "^8.29.0",
"eslint-config-egg": "^12.1.0"
},
"engines": {
"node": ">=14.17.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"
},
"author": "dead_horse",
"license": "MIT"
}