forked from jesperborgstrup/node-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"name": "@coinify/rabbitmq",
"version": "1.6.0",
"description": "Coinify RabbitMQ client with support for events and tasks",
"main": "./index.js",
"author": {
"name": "Jesper Borgstrup"
},
"scripts": {
"test": "NODE_ENV=${NODE_ENV:-localTest} mocha --recursive --exit test/bootstrap.test.js ./test",
"test-watch": "NODE_ENV=${NODE_ENV:-localTest} mocha --watch --recursive --exit test/bootstrap.test.js ./test",
"lint": "eslint --color .",
"lint-fix": "eslint --fix .",
"build": "npm i && npm run lint && npm test"
},
"dependencies": {
"amqplib": "^0.5.5",
"backoff": "^2.5.0",
"console-log-level": "^1.4.1",
"lodash": "^4.17.15",
"uuid": "^3.3.3"
},
"devDependencies": {
"@coinify/eslint-config-coinify": "^1.3.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"cli": "^1.0.1",
"eslint": "^6.8.0",
"eslint-plugin-mocha": "^6.2.2",
"mocha": "^7.0.0",
"sinon": "^8.0.4"
},
"repository": {
"type": "git",
"url": "git@github.com:CoinifySoftware/node-rabbitmq.git"
},
"license": "MIT"
}