-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.13 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
{
"name": "@pager/jackrabbit",
"version": "4.8.2",
"description": "Easy RabbitMQ for node",
"keywords": [
"amqp",
"rabbitmq",
"rabbit",
"job",
"jobs",
"queue",
"task",
"resqueue",
"rpc",
"drpc",
"distributed-rpc"
],
"repository": {
"type": "git",
"url": "git://github.com/pagerinc/jackrabbit.git"
},
"homepage": "https://github.com/pagerinc/jackrabbit",
"bugs": "https://github.com/pagerinc/jackrabbit/issues",
"main": "lib/jackrabbit.js",
"engines": {
"node": ">= v10.18.0"
},
"license": "MIT",
"author": "Pager Developers <engineering@pager.com>",
"contributors": [
"Pager Developers <engineering@pager.com>",
"Hunter Loftis <hunter@hunterloftis.com>"
],
"dependencies": {
"amqplib": "0.5.x",
"lodash.assignin": "4.x.x",
"uuid": "3.x.x"
},
"devDependencies": {
"chai": "4.x.x",
"eslint": "6.x.x",
"eslint-config-hapi": "12.x.x",
"eslint-plugin-hapi": "4.x.x",
"mocha": "6.x.x"
},
"mocha": {
"bail": true,
"recursive": true
},
"scripts": {
"test": "mocha",
"lint": "eslint lib/** test/**"
}
}