forked from kelektiv/node-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.15 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
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
{
"name": "cron",
"description": "Cron jobs for your node",
"version": "3.1.8",
"author": "Nick Campbell <nicholas.j.campbell@gmail.com> (https://github.com/ncb000gt)",
"bugs": {
"url": "https://github.com/kelektiv/node-cron/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kelektiv/node-cron.git"
},
"main": "dist/index",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"lint:eslint": "eslint src/ tests/ --ext .ts",
"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": "jest --coverage",
"test:watch": "jest --watch --coverage",
"test:fuzz": "jest --testMatch='**/*.fuzz.ts' --coverage=false --testTimeout=120000",
"prepare": "husky install"
},
"dependencies": {
"@types/luxon": "~3.4.0",
"luxon": "~3.5.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@fast-check/jest": "2.0.2",
"@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.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/jest": "29.5.14",
"@types/node": "20.17.5",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"chai": "4.5.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"sinon": "17.0.2",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"keywords": [
"cron",
"node cron",
"node-cron",
"schedule",
"scheduler",
"cronjob",
"cron job"
],
"license": "MIT",
"contributors": [
"Brandon der Blätter <https://interlucid.com/contact/> (https://github.com/intcreator)",
"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)"
],
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}