forked from moscajs/aedes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.2 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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "aedes",
"version": "0.48.103",
"description": "Stream-based MQTT broker",
"main": "aedes.js",
"types": "aedes.d.ts",
"publishConfig": {
"registry": "http://npm.internal:4873"
},
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript && npm run lint:markdown",
"lint:fix": "standard --fix && eslint -c types/.eslintrc.json --fix aedes.d.ts types/**/*.ts test/types/**/*.test-d.ts",
"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:ci": "npm run lint && npm run unit -- --cov --no-check-coverage --coverage-report=lcovonly && npm run test:typescript",
"test:report": "npm run lint && npm run unit:report && npm run test:typescript",
"test:typescript": "tsd",
"unit": "tap -J test/*.js",
"unit:report": "tap -J test/*.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap",
"license-checker": "license-checker --production --onlyAllow=\"MIT;ISC;BSD-3-Clause;BSD-2-Clause\""
},
"pre-commit": [
"test"
],
"tsd": {
"directory": "test/types"
},
"standard": {
"ignore": [
"types/*",
"test/types/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bolteu/aedes.git"
},
"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"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bolteu/aedes/issues"
},
"homepage": "https://github.com/bolteu/aedes#readme",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@sinonjs/fake-timers": "^9.1.2",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"concat-stream": "^2.0.0",
"duplexify": "^4.1.2",
"license-checker": "^25.0.1",
"markdownlint-cli": "^0.32.1",
"mqtt": "^4.3.7",
"mqtt-connection": "^4.1.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.24.0",
"typescript": "^4.7.4",
"websocket-stream": "^5.5.2"
},
"dependencies": {
"aedes-packet": "3.0.100",
"aedes-persistence": "9.1.100",
"end-of-stream": "^1.4.4",
"fastfall": "^1.5.1",
"fastparallel": "^2.4.1",
"fastseries": "^2.0.0",
"hyperid": "^3.0.1",
"mqemitter": "^5.0.0",
"mqtt-packet": "^8.1.1",
"retimer": "^3.0.0",
"reusify": "^1.0.4",
"uuid": "^9.0.0"
}
}