forked from RafaelGSS/fastify-amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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": "fastify-amqp",
"version": "0.3.0",
"description": "Fastify AMQP connection plugin, to use with RabbitMQ",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "tap test.js",
"test-report": "tap --coverage-report=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wouldgo/fastify-amqp.git"
},
"keywords": [
"rabbitmq",
"connection",
"amqp",
"messager",
"queue",
"fastify"
],
"author": "Rafael Gonzaga - @rafaelgss",
"contributors": [
{
"name": "Dario Andrei",
"email": "wouldgo84@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wouldgo/fastify-amqp/issues"
},
"homepage": "https://github.com/wouldgo/fastify-amqp#readme",
"dependencies": {
"amqplib": "^0.7.1",
"camelcase": "^6.0.0",
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"fastify": "^3.14.2",
"pre-commit": "^1.2.2",
"tap": "^15.0.4",
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1"
},
"pre-commit": [
"lint",
"test"
]
}