forked from davidroman0O/moleculer-cron
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·49 lines (49 loc) · 1000 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
42
43
44
45
46
47
48
49
{
"name": "@r2d2bzh/moleculer-cron",
"version": "0.1.4",
"description": "Mixin for Node-Cron",
"main": "index.js",
"scripts": {
"pretest": "eslint src test",
"test": "c8 jest"
},
"keywords": [
"microservice",
"moleculer",
"cron"
],
"repository": {
"type": "git",
"url": "git@github.com:r2d2bzh/moleculer-cron.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/r2d2bzh/moleculer-cron#readme",
"author": "David Roman",
"peerDependencies": {
"moleculer": "^0.14.33"
},
"devDependencies": {
"c8": "^9.1.0",
"eslint": "^9.0.0",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"moleculer": "^0.14.33",
"globals": "^15.0.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">=14.x.x"
},
"dependencies": {
"cron": "^3.1.7",
"uuid": "^9.0.1"
}
}