-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "mqtt-dispatcher",
"description": "Node.js message dispatcher for MQTT",
"version": "2.0.1",
"main": "src/MqttDispatcher.js",
"repository": "https://github.com/chrvadala/mqtt-dispatcher.git",
"author": "chrvadala",
"license": "MIT",
"scripts": {
"test": "npm run test:standard && npm run test:coverage",
"test:jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:standard": "standard",
"docs:api": "jsdoc2md --template docs/templates/api.hbs --example-lang js --heading-depth 2 src/*.js > docs/api.md",
"build": "npm run docs:api"
},
"funding": "https://github.com/sponsors/chrvadala",
"keywords": [
"mqtt",
"dispatcher",
"messages",
"router",
"iot",
"mqtt-client"
],
"dependencies": {
"qlobber": "^7.0.1"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"aedes": "^0.48.0",
"jest": "^29.0.3",
"jsdoc-to-markdown": "^7.1.1",
"mqtt": "^4.3.7",
"portfinder": "^1.0.32",
"standard": "^17.0.0"
}
}