-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "fastify-amqp",
"version": "1.1.0",
"description": "Fastify AMQP connection plugin, to use with RabbitMQ",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "npm run unit && npm run typescript",
"unit": "tap test.js",
"typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RafaelGSS/fastify-amqp.git"
},
"keywords": [
"rabbitmq",
"connection",
"amqp",
"messager",
"queue",
"fastify"
],
"author": "Rafael Gonzaga - @rafaelgss",
"license": "MIT",
"bugs": {
"url": "https://github.com/RafaelGSS/fastify-amqp/issues"
},
"homepage": "https://github.com/RafaelGSS/fastify-amqp#readme",
"dependencies": {
"amqplib": "^0.10.0",
"fastify-plugin": "^4.0.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.0",
"fastify": "^4.0.0",
"pre-commit": "^1.2.2",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.28.0",
"typescript": "^5.0.2"
},
"pre-commit": [
"lint",
"test"
]
}