-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "rabbitmq-worker",
"version": "0.0.1",
"description": "Collection of different workers for a RabbitMQ workflow",
"type": "module",
"engines": {
"node": ">=16.14.0",
"npm": ">=8.3.1"
},
"devDependencies": {
"eslint": "^7.29.0",
"fs-extra": "^10.1.0",
"geoserver-node-client": "^1.2.2",
"jest-environment-jsdom": "^29.0.2",
"nodemailer": "^6.7.8",
"ol": "^7.1.0",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"proj4": "^2.8.0",
"ts-jest": "^28.0.8"
},
"dependencies": {
"amqplib": "^0.8.0"
},
"scripts": {
"lint": "eslint -c .eslintrc.yml src",
"test": "npm run lint && PINO_STREAM_LOG_LEVEL=fatal jest --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klips-project/rabbitmq-worker.git"
},
"keywords": [
"RabbitMQ",
"message",
"queue"
],
"author": "terrestris GmbH & Co. KG <[email protected]>, meggsimum <[email protected]>",
"contributors": [
{
"name": "Michael Holthausen",
"email": "[email protected]",
"url": "https://github.com/mholthausen"
},
{
"name": "Johannes Weskamm",
"email": "[email protected]",
"url": "https://github.com/weskamm"
},
{
"name": "Hannes Blitza",
"email": "[email protected]",
"url": "https://github.com/hblitza"
},
{
"name": "Jakob Miksch",
"email": "[email protected]",
"url": "https://github.com/JakobMiksch"
},
{
"name": "Andreas Schmitz",
"email": "[email protected]",
"url": "https://github.com/hwbllmnn"
}
],
"license": "BSD 2-Clause",
"bugs": {
"url": "https://github.com/klips-project/rabbitmq-worker/issues"
},
"homepage": "https://github.com/klips-project/rabbitmq-worker#readme"
}