-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"author": "Halil Baydar",
"name": "scheduler4js",
"version": "1.2.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index",
"typings": "dist/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"release": "npm run build & npm publish"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SchedulerX/scheduler4js.git"
},
"keywords": [
"scheduler",
"nodejs",
"sql",
"job",
"cron",
"runner",
"jobs"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.11",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.3"
},
"dependencies": {
"cron-parser": "^4.8.1",
"moment": "^2.29.4",
"sequelize-typescript": "^2.1.5"
},
"bugs": {
"url": "https://github.com/SchedulerX/scheduler4js/issues"
}
}