-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
66
67
68
69
70
71
{
"name": "aedes-tests",
"version": "0.0.1",
"description": "Integration/Black Box tests for Aedes MQTT Broker",
"main": "index.js",
"scripts": {
"unit": "tap test/*.test.js",
"lint:standard": "standard --verbose | snazzy",
"test": "npm run lint:standard && npm run unit",
"test-redis": "DB=redis npm run test",
"test-mongo": "DB=mongo npm run test",
"test-redis-nc": "NO_CLUSTERS=true DB=redis npm run test",
"test-mongo-nc": "NO_CLUSTERS=true DB=mongo npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moscajs/aedes-tests.git"
},
"keywords": [
"aedes",
"mqtt",
"broker",
"nodejs",
"node",
"test"
],
"engines": {
"node": ">=10"
},
"author": "Daniel Lando <[email protected]>",
"contributors": [
{
"name": "Gavin D'mello",
"url": "https://github.com/GavinDmello"
},
{
"name": "Behrad Zari",
"url": "https://github.com/behrad"
},
{
"name": "Gnought",
"url": "https://github.com/gnought"
},
{
"name": "Daniel Lando",
"url": "https://github.com/robertsLando"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/moscajs/aedes-tests/issues"
},
"homepage": "https://github.com/moscajs/aedes-tests#readme",
"devDependencies": {
"aedes": "^0.42.2",
"aedes-persistence": "^8.1.1",
"aedes-persistence-mongodb": "^8.0.1",
"aedes-persistence-redis": "^7.0.0",
"async-mqtt": "^2.6.0",
"mongo-clean": "^2.0.0",
"mqemitter": "^4.2.0",
"mqemitter-mongodb": "^7.0.2",
"mqemitter-redis": "^4.0.3",
"p-map": "^4.0.0",
"snazzy": "^8.0.0",
"standard": "^14.3.4",
"tap": "^14.10.7",
"ws": "^7.3.0"
},
"dependencies": {}
}