-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "moleculer-faktory",
"version": "1.3.0",
"description": "Moleculer service for faktory queue management",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test index.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuxChanLu/moleculer-faktory.git"
},
"keywords": [
"moleculer",
"faktory",
"queue",
"job",
"async"
],
"author": "Hugo Meyronneinc <hugo@LuxChan S.A R.L.-S>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuxChanLu/moleculer-faktory/issues"
},
"homepage": "https://github.com/LuxChanLu/moleculer-faktory#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">= 12.x.x"
},
"dependencies": {
"faktory-worker": "^4.5.1"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"coveralls": "^3.1.1",
"eslint": "^8.30.0",
"eslint-plugin-jest": "^27.1.7",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"moleculer": "^0.14.27"
}
}