-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
executable file
·57 lines (57 loc) · 1.29 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
{
"name": "moleculer-cron",
"version": "0.0.7",
"description": "Mixin for Node-Cron",
"main": "index.js",
"types": "index.d.ts",
"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": "git+ssh://[email protected]/davidroman0O/moleculer-cron.git"
},
"homepage": "https://github.com/davidroman0O/moleculer-cron#readme",
"author": "David Roman",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"moleculer": "^0.14.32"
},
"devDependencies": {
"benchmarkify": "^4.0.0",
"coveralls": "3.1.1",
"eslint": "8.57.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lolex": "^6.0.0",
"moleculer": "^0.14.32",
"moleculer-docgen": "^0.2.1",
"nodemon": "^3.1.0",
"npm-check": "^3.2.10"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 6.x.x"
},
"dependencies": {
"cron": "^3.1.6"
}
}