-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.97 KB
/
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
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
{
"name": "@tngtech/momo-scheduler",
"version": "2.3.0",
"description": "momo is a scheduler that persists jobs in mongodb",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/TNG/momo-scheduler.git"
},
"keywords": [
"delayed",
"interval",
"job",
"jobs",
"runner",
"scheduler",
"task",
"recurrent"
],
"private": false,
"license": "Apache-2.0",
"scripts": {
"build": "npm run clean && tsc",
"clean": "npx rimraf dist",
"test": "jest --detectOpenHandles",
"test:unit": "npm run test \"^((?!\\.integration\\.).)*$\"",
"test:integration": "npm run test integration",
"lint": "prettier --check \"**/*.ts\" && eslint",
"format": "prettier --write \"**/*.ts\" && eslint --fix"
},
"dependencies": {
"cron": "3.2.1",
"cron-parser": "4.9.0",
"human-interval": "2.0.1",
"lodash": "4.17.21",
"luxon": "3.5.0",
"neverthrow": "8.1.1",
"typed-emitter": "2.1.0",
"uuid": "11.0.3"
},
"peerDependencies": {
"mongodb": "4 || 5 || 6"
},
"devDependencies": {
"@sinonjs/fake-timers": "13.0.5",
"@stylistic/eslint-plugin": "2.10.1",
"@types/human-interval": "1.0.2",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/luxon": "3.4.2",
"@types/node": "22.9.0",
"@types/sinonjs__fake-timers": "8.1.5",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"mongodb-memory-server": "10.1.2",
"pino": "9.5.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}