forked from cilindrox/jackrabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@pager/jackrabbit",
"version": "5.3.0",
"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",
"renovate": {
"extends": [
"github>pagerinc/renovate-config"
],
"lockFileMaintenance": {
"enabled": false
}
},
"engines": {
"node": ">= v10.18.0"
},
"license": "MIT",
"author": "Pager Developers <[email protected]>",
"contributors": [
"Pager Developers <[email protected]>",
"Hunter Loftis <[email protected]>"
],
"dependencies": {
"amqplib": "0.7.x",
"lodash.assignin": "4.x",
"uuid": "8.x"
},
"devDependencies": {
"@pager/semantic-release-config": "1.x",
"chai": "4.x",
"eslint": "7.x",
"eslint-config-hapi": "12.x",
"eslint-plugin-hapi": "4.x",
"mocha": "8.x",
"semantic-release": "17.x",
"sinon": "10.x"
},
"mocha": {
"bail": true,
"recursive": true
},
"scripts": {
"test": "mocha",
"lint": "eslint lib/** test/**"
},
"release": {
"extends": "@pager/semantic-release-config"
}
}