-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "jackrabbit",
"version": "4.4.0",
"description": "Easy RabbitMQ for node",
"readme": "https://github.com/hunterloftis/jackrabbit/blob/master/readme.md",
"keywords": [
"amqp",
"rabbit",
"job",
"jobs",
"queue",
"task",
"resqueue"
],
"repository": "hunterloftis/jackrabbit",
"homepage": "https://github.com/hunterloftis/jackrabbit",
"bugs": "https://github.com/hunterloftis/jackrabbit/issues",
"main": "lib/jackrabbit.js",
"scripts": {
"test": "mocha -R spec && npm run test-format",
"test-format": "./node_modules/prettier-eslint-cli/dist/index.js lib/**/*.js test/**/*.js --list-different",
"format": "./node_modules/prettier-eslint-cli/dist/index.js lib/**/*.js test/**/*.js --write"
},
"engines": {
"node": ">= 0.10.x"
},
"author": "Hunter Loftis <[email protected]>",
"license": "MIT",
"dependencies": {
"amqplib": "^0.4.2",
"lodash": "^3.10.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5",
"prettier": "1.13.7",
"prettier-eslint-cli": "^4.7.1",
"release-it": "^7.4.7"
}
}