-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.08 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
{
"name": "@node-cron/fastify",
"version": "0.1.0",
"description": "Fastify plugin that schedules jobs with node-cron: a drop-in-friendly alternative to @fastify/schedule with cron expressions, distributed-ready scheduling via a pluggable coordinator, and background tasks.",
"author": "Lucas Merencia",
"license": "ISC",
"homepage": "https://github.com/node-cron/fastify#readme",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "./node_modules/.bin/eslint ./src",
"check": "npm run lint && npm test",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepack": "npm run build"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/node-cron/fastify.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"cron",
"scheduler",
"schedule",
"node-cron",
"task",
"job",
"distributed"
],
"bugs": {
"url": "https://github.com/node-cron/fastify/issues"
},
"peerDependencies": {
"fastify": "^5.0.0",
"node-cron": ">=4.4.1"
},
"dependencies": {
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@node-cron/redis-coordinator": "^0.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.15.3",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"fastify": "^5.2.0",
"globals": "^16.1.0",
"ioredis": "^5.4.1",
"node-cron": "^4.4.1",
"rollup": "^4.62.0",
"rollup-plugin-dts": "^6.4.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^4.1.9"
}
}