-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@corundex/task-scheduler",
"version": "1.0.0",
"description": "A flexible task scheduler with cooldown support and Docker environment detection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"keywords": [
"scheduler",
"task",
"cron",
"docker",
"cooldown"
],
"author": "corundex",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/corundex/task-scheduler.git"
},
"bugs": {
"url": "https://github.com/corundex/task-scheduler/issues"
},
"homepage": "https://github.com/corundex/task-scheduler#readme",
"dependencies": {
"cron": "^2.4.4"
},
"devDependencies": {
"@types/cron": "^2.4.3",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.76",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}