-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "amqp-hive",
"version": "0.3.0",
"description": "Easy, type-safe worker (bee) processes using AMQP. Offload resource-intensive jobs so you can get back to making that honey 🍯.",
"keywords": [
"amqp",
"worker",
"work",
"task",
"queue"
],
"homepage": "https://github.com/contrawork/amqp-hive",
"bugs": {
"url": "https://github.com/contrawork/amqp-hive/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/contrawork/amqp-hive.git"
},
"license": "MIT",
"author": "Daniel Rearden <[email protected]>",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/chance": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"amqplib": "^0.7.1",
"chance": "^1.1.7",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
}
}