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
|
{
"name": "mongo-cronjob",
"version": "0.1.2",
"description": "Cron-based job scheduler integrated with mongoDB",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"lint": "eslint .",
"test": "mocha test/**/*.test.ts",
"build": "rm -rf dist && tsc --project tsconfig.release.json"
},
"author": "eug-vs",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"cron": "^1.8.2",
"mongoose": "^5.11.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.14",
"@types/cron": "^1.7.2",
"@types/mocha": "^8.0.4",
"@types/mongoose": "^5.10.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}
|