-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 866 Bytes
/
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
{
"name": "rabbitmq-client",
"version": "5.0.2",
"description": "Robust, typed, RabbitMQ (0-9-1) client library",
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/cody-greene/node-rabbitmq-client",
"repository": {
"type": "git",
"url": "git+https://github.com/cody-greene/node-rabbitmq-client.git"
},
"keywords": [
"amqp",
"rabbitmq",
"reconnect",
"0-9-1"
],
"license": "MIT",
"main": "./lib/index.js",
"files": [
"lib/"
],
"scripts": {
"prepublishOnly": "rm -rf lib && tsc -p tsconfig.build.json",
"test": "node -r ts-node/register --test test/*.ts"
},
"devDependencies": {
"@types/node": "^18.19.43",
"eslint": "^9.8.0",
"tinybench": "^2.5.1",
"ts-node": "^10.4.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}