-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.06 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.06 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "aedes",
"version": "0.45.0",
"description": "Stream-based MQTT broker wit Faul-Injection capabilities",
"main": "aedes.js",
"types": "aedes.d.ts",
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript && npm run lint:markdown",
"lint:fix": "standard --fix",
"lint:standard": "standard --verbose | snazzy",
"lint:typescript": "eslint -c types/.eslintrc.json aedes.d.ts types/**/*.ts test/types/**/*.test-d.ts",
"lint:markdown": "markdownlint docs/*.md README.md",
"test": "npm run lint && npm run unit && npm run test:typescript",
"test:report": "npm run lint && npm run unit:report && npm run test:typescript",
"test:typescript": "tsd",
"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",
},
"tsd": {
"directory": "test/types"
},
"standard": {
"ignore": [
"types/*",
"test/types/*"
]
},
"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 <hello@matteocollina.com>",
"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"
},
{
"name": "Miguel P. Duarte",
"url": "https://miguelpduarte.me/"
},
{
"name": "João Pedro Dias",
"url": "https://jpdias.me/"
}
],
"license": "MIT",
"devDependencies": {
"@sinonjs/fake-timers": "^7.0.2",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"concat-stream": "^2.0.0",
"duplexify": "^4.1.1",
"license-checker": "^25.0.1",
"markdownlint-cli": "^0.27.1",
"mqtt-connection": "^4.1.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"release-it": "^14.4.1",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^14.11.0",
"tsd": "^0.14.0",
"typescript": "^4.2.3",
"websocket-stream": "^5.5.2"
},
"dependencies": {
"aedes-packet": "^2.3.1",
"aedes-persistence": "^8.1.3",
"bulk-write-stream": "^2.0.1",
"end-of-stream": "^1.4.4",
"fastfall": "^1.5.1",
"fastparallel": "^2.4.0",
"fastseries": "^2.0.0",
"hyperid": "^2.1.0",
"mqemitter": "^4.4.1",
"mqtt-packet": "^6.9.0",
"readable-stream": "^3.6.0",
"retimer": "^3.0.0",
"reusify": "^1.0.4",
"rxjs": "^6.6.7",
"mqtt": "^4.2.6",
"uuid": "^8.3.2"
}
}