-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.25 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
{
"name": "@node-cron/nestjs",
"version": "0.1.0",
"description": "NestJS integration for node-cron: a drop-in replacement for @nestjs/schedule with the same decorators, plus background tasks and distributed-ready scheduling.",
"author": "Lucas Merencia",
"license": "ISC",
"homepage": "https://github.com/node-cron/nestjs#readme",
"type": "module",
"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": "eslint ./src",
"check": "npm run lint && npm test",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepack": "npm run build"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-cron/nestjs.git"
},
"keywords": [
"nestjs",
"nest",
"cron",
"scheduler",
"schedule",
"task",
"node-cron",
"distributed",
"background-task"
],
"bugs": {
"url": "https://github.com/node-cron/nestjs/issues"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0",
"node-cron": ">=4.4.1",
"reflect-metadata": "^0.1.12 || ^0.2.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@node-cron/redis-coordinator": "^0.1.0",
"@rollup/plugin-commonjs": "^29.0.3",
"@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",
"globals": "^16.1.0",
"ioredis": "^5.4.1",
"node-cron": "^4.4.1",
"reflect-metadata": "^0.2.2",
"rollup": "^4.62.0",
"rollup-plugin-dts": "^6.4.1",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^4.1.9"
}
}