-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 978 Bytes
/
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
{
"name": "@lzwme/cron-tasks",
"version": "1.0.0",
"description": "A simple cron tasks manager based on Node.js",
"main": "src/index.mjs",
"bin": {
"tcron": "bin.js"
},
"type": "module",
"scripts": {
"version": "standard-version",
"release": "npm run version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cron",
"crontab",
"schedule",
"node-cron",
"cronjob"
],
"repository": "https://github.com/lzwme/cron-tasks.git",
"author": {
"name": "renxia",
"email": "[email protected]",
"url": "https://lzw.me"
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"files": [
"src",
"bin.js",
"cron.config.sample.mjs"
],
"dependencies": {
"@lzwme/fe-utils": "^1.6.0",
"cron": "^3.1.6"
},
"devDependencies": {
"standard-version": "^9.5.0"
}
}