aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: f5dd8e38a6ef53d5bc082bf9bf057ab852abc86a (plain)
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
{
  "name": "mongo-cronjob",
  "version": "0.0.0",
  "description": "Cron-based job scheduler integrated with mongoDB",
  "main": "index.js",
  "scripts": {
    "test": "mocha test/**/*.test.ts"
  },
  "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"
  }
}