-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 KB
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
{
"name": "@opzkit/nodeamqp",
"homepage": "https://github.com/opzkit/nodeamqp",
"version": "0.8.0",
"description": "An opinionated AMQP library for NodeJS",
"repository": {
"type": "git",
"url": "https://github.com/opzkit/nodeamqp.git"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "Joakim Olsson <joakim@unbound.se>",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "yarn run build",
"version": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > lib/version.ts && git add lib/version.ts",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@types/amqplib": "0.10.8",
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"@types/uuid": "11.0.0",
"babel-jest": "30.3.0",
"jest": "30.3.0",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"amqplib": "0.10.9",
"uuid": "13.0.0"
},
"files": [
"dist/lib/index.d.ts",
"dist/lib/index.js",
"dist/lib/logger.d.ts",
"dist/lib/logger.js",
"dist/lib/message_logger.d.ts",
"dist/lib/message_logger.js",
"dist/lib/naming.d.ts",
"dist/lib/naming.js",
"dist/lib/version.d.ts",
"dist/lib/version.js"
],
"keywords": [
"AMQP",
"AMQP 0-9-1",
"RabbitMQ"
]
}