-
Notifications
You must be signed in to change notification settings - Fork 4
/
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.17.0",
"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.10.1",
"@types/colors": "^1.2.1",
"@types/debug": "^4.1.8",
"@types/uuid": "^9.0.2",
"eslint": "^8.46.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"amqplib": "^0.10.3",
"colors": "^1.4.0",
"debug": "^4.3.4",
"ts-amqp": "^0.8.1",
"uuid": "^9.0.0"
}
}