forked from martianboy/peanar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "peanar",
"version": "0.11.2",
"description": "A job queue for Node.js based on RabbitMQ",
"main": "dist/index.js",
"scripts": {
"test": "npx mocha",
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martianboy/peanar.git"
},
"files": [
"dist"
],
"keywords": [
"rabbitmq",
"job-queue",
"background-jobs",
"worker-queue"
],
"author": "Abbas Mashayekh",
"license": "MIT",
"bugs": {
"url": "https://github.com/martianboy/peanar/issues"
},
"engines": {
"node": ">= 14.x"
},
"homepage": "https://github.com/martianboy/peanar#readme",
"devDependencies": {
"@types/amqplib": "^0.5.17",
"@types/colors": "^1.2.1",
"@types/debug": "^4.1.5",
"@types/uuid": "^8.3.0",
"eslint": "^7.26.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"amqplib": "^0.7.1",
"colors": "^1.4.0",
"debug": "^4.3.1",
"ts-amqp": "^0.8.1",
"uuid": "^8.3.2"
}
}