forked from moscajs/aedes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.86 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "aedes",
"version": "0.40.1",
"description": "Stream-based MQTT broker",
"main": "aedes.js",
"types": "aedes.d.ts",
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:standard": "standard --verbose | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts aedes.d.ts",
"unit": "tap --no-esm -J test/*.js",
"unit:report": "tap --no-esm -J test/*.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap",
"typescript": "tsc --project ./test/types/tsconfig.json",
"test:report": "npm run lint && npm run unit:report && npm run typescript",
"test": "npm run lint && npm run unit && npm run typescript",
"test:ci": "npm run lint && npm run unit -- --cov --coverage-report=lcovonly && npm run typescript",
"license-checker": "license-checker --production --onlyAllow=\"MIT;ISC;BSD-3-Clause;BSD-2-Clause\""
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/moscajs/aedes.git"
},
"bugs": {
"url": "http://github.com/moscajs/aedes/issues"
},
"engines": {
"node": ">=10"
},
"keywords": [
"mqtt",
"broker",
"server",
"mqtt-server",
"stream",
"streams",
"publish",
"subscribe",
"pubsub",
"messaging",
"mosca",
"mosquitto",
"iot",
"internet",
"of",
"things"
],
"author": "Matteo Collina <[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",
"devDependencies": {
"@types/node": "^12.12.26",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"concat-stream": "^2.0.0",
"duplexify": "^4.1.1",
"license-checker": "^25.0.1",
"mqtt": "^3.0.0",
"mqtt-connection": "^4.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^14.3.1",
"tap": "^14.10.6",
"typescript": "^3.7.5",
"websocket-stream": "^5.5.0"
},
"dependencies": {
"aedes-packet": "^2.1.0",
"aedes-persistence": "^7.2.1",
"aedes-protocol-decoder": "^1.0.0",
"bulk-write-stream": "^2.0.1",
"end-of-stream": "^1.4.4",
"fastfall": "^1.5.1",
"fastparallel": "^2.3.0",
"fastseries": "^1.7.2",
"from2": "^2.3.0",
"mqemitter": "^3.0.0",
"mqtt-packet": "^6.3.0",
"proxy-protocol-js": "^4.0.3",
"readable-stream": "^3.5.0",
"retimer": "^2.0.0",
"reusify": "^1.0.4",
"shortid": "^2.2.15",
"through2": "^3.0.1",
"uuid": "^3.4.0"
}
}