-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "arnavmq",
"version": "0.16.4",
"description": "ArnavMQ is a RabbitMQ wrapper",
"keywords": [
"rabbitmq",
"broker",
"amqp",
"taskQueue",
"message",
"publish",
"subscribe"
],
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint . && prettier -c . && tsc --project types/tsconfig.types.json",
"format": "eslint --fix . && prettier --write .",
"cover": "test -d .nyc_output && nyc report --reporter lcov",
"test": "dot-only-hunter test && nyc mocha --recursive --exit"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/bringg/node-arnavmq.git"
},
"author": "Bringg",
"license": "MIT",
"bugs": {
"url": "https://github.com/bringg/node-arnavmq/issues"
},
"homepage": "https://github.com/bringg/node-arnavmq#readme",
"dependencies": {
"@types/amqplib": "^0.10.5",
"amqplib": "^0.10.3",
"p-defer": "^3.0.0",
"serialize-error": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"child-process-promise": "^2.2.1",
"dot-only-hunter": "^1.0.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.11.0",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"sinon": "^19.0.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}