-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "@opzkit/nodeamqp",
"homepage": "https://github.com/opzkit/nodeamqp",
"version": "0.6.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 <[email protected]>",
"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.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/amqplib": "^0.10.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.0.0",
"jest": "^29.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.0.2"
},
"dependencies": {
"amqplib": "^0.10.0",
"uuid": "^11.0.1"
},
"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"
]
}