-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "@flowfuse/mqtt-schema-agent",
"version": "1.0.4",
"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 .eslintrc \"*.js\" \"lib/**/*.js\" \"test/**/*.js\"",
"lint:fix": "eslint -c .eslintrc \"*.js\" \"lib/**/*.js\" \"test/**/*.js\" --fix"
},
"bin": {
"mqtt-schema-agent": "./index.js"
},
"keywords": [
"flowfuse",
"mqtt"
],
"author": {
"name": "FlowFuse Inc."
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.2",
"got": "^11.8.6",
"is-utf8": "^0.2.1",
"mqtt": "^5.10.3"
},
"devDependencies": {
"ajv": "8.17.1",
"aedes": "^0.49.0",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "^10.0.0",
"should": "^13.2.3"
},
"engines": {
"node": ">=18.x"
}
}