-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 934 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
{
"name": "eventcron",
"version": "1.0.7",
"description": "An event package using node-cron.",
"main": "lib/index.js",
"scripts": {
"latest": "tsc && npm publish",
"build": "tsc",
"dev": "tsc && node index.js"
},
"author": "LMS5413",
"license": "MIT",
"keywords": [
"wrapper",
"event",
"cron",
"node-cron"
],
"devDependencies": {
"@types/node": "^18.11.8",
"@types/node-cron": "^3.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.1.3",
"chalk": "4.1.2",
"eventcron": "^1.0.3",
"node-cron": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LMS5413/EventCron.git"
},
"bugs": {
"url": "https://github.com/LMS5413/EventCron/issues"
},
"types": "./lib/index.d.ts",
"homepage": "https://github.com/LMS5413/EventCron#readme",
"directories": {
"lib": "lib"
}
}