-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "qlobber",
"description": "Node.js globbing for amqp-like topics",
"version": "8.0.1",
"homepage": "https://github.com/davedoesdev/qlobber",
"author": {
"name": "David Halls",
"email": "[email protected]",
"url": "http://www.davedoesdev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/davedoesdev/qlobber.git"
},
"bugs": {
"url": "https://github.com/davedoesdev/qlobber/issues"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "(cd native && npm install && node-gyp rebuild --debug) && grunt test",
"coverage": "(cd native && npm install && node-gyp rebuild --debug) && grunt coverage"
},
"directories": {
"test": "test",
"lib": "lib"
},
"keywords": [
"amqp",
"mqtt",
"rabbitmq",
"ascoltatore"
],
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@davedoesdev/b": "^5.0.3",
"c8": "^9.1.0",
"chai": "^5.0.3",
"grunt": "^1.6.1",
"grunt-apidox": "^3.1.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-exec": "^3.0.0",
"JSONStream": "^1.3.5",
"mocha": "^10.2.0",
"stream-buffers": "^3.0.2"
},
"overrides": {
"apidox": {
"dox": "^1.0.0"
}
}
}