forked from jbielick/rabbitmq_worker_node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 877 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
38
39
40
{
"name": "@adwerx/rabbitmq-worker",
"version": "1.0.0",
"description": "",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"prepublish": "npm run test && npm run build"
},
"engines": {
"node": ">=18"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/amqplib": "^0.10",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"amqplib": "^0.10"
},
"dependencies": {
"debug": "^4.3.4",
"p-limit": "^5.0.0"
}
}