-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.07 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
{
"name": "@coinify/rabbitmq",
"version": "2.0.4",
"description": "Coinify RabbitMQ client with support for events and tasks",
"main": "dist/index.js",
"types": "dist/index",
"author": {
"name": "Jesper Borgstrup"
},
"scripts": {
"build": "npm i && npm run compile && npm run lint && npm t",
"compile": "rm -rf dist && tsc -p .",
"lint": "eslint . --ext .ts --ext .js",
"lint-fix": "eslint . --fix --ext .ts --ext .js",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "mocha --config .mocharc.unit.json",
"test-unit-watch": "mocha --config .mocharc.unit.json --watch",
"test-integration": "mocha --config .mocharc.integration.json",
"test-integration-watch": "mocha --config .mocharc.integration.json --watch"
},
"dependencies": {
"@types/amqplib": "^0.8.2",
"amqplib": "^0.8.0",
"backoff": "^2.5.0",
"console-log-level": "^1.4.1",
"lodash.clonedeep": "^4.5.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.truncate": "^4.4.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@coinify/eslint-config-coinify": "^2.1.1",
"@types/backoff": "^2.5.2",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.3",
"@types/console-log-level": "^1.4.2",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.defaultsdeep": "^4.6.6",
"@types/lodash.truncate": "^4.4.6",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@types/sinon": "^10.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"cli": "^1.0.1",
"eslint": "^8.9.0",
"eslint-plugin-mocha": "^10.0.3",
"lodash.chunk": "^4.2.0",
"mocha": "^9.2.0",
"sinon": "^13.0.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "[email protected]:CoinifySoftware/node-rabbitmq.git"
},
"license": "MIT"
}