-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "@flowfuse/mqtt-schema-agent",
"version": "1.1.1",
"description": "Agent to collect MQTT topic Schema",
"main": "index.js",
"homepage": "https://flowfuse.com",
"bugs": {
"url": "https://github.com/FlowFuse/mqtt-schema-agent/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/mqtt-schema-agent.git"
},
"scripts": {
"test": "mocha 'test/**/*_spec.js' --timeout 10000 --node-option=unhandled-rejections=strict",
"lint": "eslint -c eslint.config.mjs",
"lint:fix": "eslint -c eslint.config.mjs --fix"
},
"bin": {
"mqtt-schema-agent": "./index.js"
},
"keywords": [
"flowfuse",
"mqtt"
],
"author": {
"name": "FlowFuse Inc."
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^2.2.2",
"express": "^5.2.1",
"got": "^11.8.6",
"is-utf8": "^0.2.1",
"mqtt": "^5.10.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"aedes": "^0.49.0",
"ajv": "8.17.1",
"eslint": "^9.39.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"globals": "^16.5.0",
"mocha": "^11.7.5",
"neostandard": "^0.12.2",
"should": "^13.2.3"
},
"engines": {
"node": ">=18.x"
}
}