forked from kelektiv/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.54 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "cron",
"description": "Cron jobs for your node",
"version": "4.4.0",
"author": "Brandon der Blätter <https://intcreator.com/> (https://github.com/intcreator)",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/intcreator"
},
"bugs": {
"url": "https://github.com/kelektiv/node-cron/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kelektiv/node-cron.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"lint:eslint": "eslint src/ tests/",
"lint:prettier": "prettier ./**/*.{json,md,yml} --check",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"test": "cross-env TZ='Europe/Paris' jest --coverage",
"test:watch": "cross-env TZ='Europe/Paris' jest --watch --coverage",
"test:fuzz": "cross-env TZ='Europe/Paris' jest --testMatch='**/*.fuzz.ts' --coverage=false --testTimeout=120000",
"prepare": "husky"
},
"dependencies": {
"@types/luxon": "~3.7.0",
"luxon": "~3.7.0"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@eslint/js": "9.39.4",
"@fast-check/jest": "2.2.0",
"@insurgent/commitlint-config": "20.0.0",
"@insurgent/conventional-changelog-preset": "10.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@swc/core": "1.15.21",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/node": "24.10.4",
"@types/sinon": "21.0.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "15.5.2",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"sinon": "21.0.3",
"typescript": "5.9.3",
"typescript-eslint": "7.18.0"
},
"keywords": [
"cron",
"node cron",
"node-cron",
"schedule",
"scheduler",
"cronjob",
"cron job"
],
"license": "MIT",
"contributors": [
"Nick Campbell <nicholas.j.campbell@gmail.com> (https://github.com/ncb000gt)",
"Pierre Cavin <me@sherlox.io> (https://github.com/sheerlox)",
"Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
"James Padolsey <> (https://github.com/jamespadolsey)",
"Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
"Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
"Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
"humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
"Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
"Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
"Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
"Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
"Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
"Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
"Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
"Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
],
"engines": {
"node": ">=18.x"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"lint-staged": {
"*.ts": "eslint src/ tests/ --fix",
"*.{json,md,yml}": "prettier ./**/*.{json,md,yml} --check --write"
}
}