forked from davidroman0O/moleculer-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.27 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
{
"name": "@stretchshop/moleculer-cron",
"version": "0.0.3",
"description": "Mixin for Node-Cron",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"test": "jest --coverage",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"microservice",
"moleculer",
"cron"
],
"repository": {
"type": "git",
"url": "[email protected]:davidroman0O/moleculer-cron.git"
},
"homepage": "https://github.com/davidroman0O/moleculer-cron#readme",
"author": "David Roman",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"moleculer": "^0.14.14"
},
"devDependencies": {
"benchmarkify": "^2.1.3",
"coveralls": "3.1.1",
"eslint": "7.30.0",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"lolex": "^6.0.0",
"moleculer": "^0.14.14",
"moleculer-docgen": "^0.3.0",
"nodemon": "^2.0.9",
"npm-check": "^5.9.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 6.x.x"
},
"dependencies": {
"cron": "^1.8.2"
}
}