-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 885 Bytes
/
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
{
"name": "nestjs-cron",
"version": "1.1.3",
"description": "NestJS cron Module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "tsc -p tsconfig.json"
},
"author": "Anton Larichev <[email protected]>",
"keywords": [
"cron",
"typescript",
"nodejs",
"nestjs"
],
"repository": {
"type": "git",
"url": "https://github.com/AlariCode/nestjs-cron"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlariCode/nestjs-cron/issues"
},
"homepage": "https://github.com/AlariCode/nestjs-cron",
"dependencies": {
"node-cron": "^2.0.3",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^6.0.5",
"@types/node": "^12.11.7",
"@types/node-cron": "^2.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.8.0",
"typescript": "^3.2.2"
},
"peerDependencies": {
"@nestjs/common": "^6.5.3"
}
}