-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "mqtt-to-http-bridge",
"version": "1.0.0",
"description": "Bridges messages from MQTT brokers to HTTP endpoints.",
"engines": {
"node": ">=12.0.0",
"yarn": ">=1.0.0"
},
"main": "./src/index",
"bin": {
"mqtt-to-http": "./bin/mqtt-to-http-bridge"
},
"scripts": {
"test": "jest test",
"lint": "eslint --ext .js src test"
},
"author": "Brandon Cannaday <[email protected]> (https://www.losant.com)",
"license": "MIT",
"dependencies": {
"async-mqtt": "^2.6.0",
"axios": "^0.19.2",
"fastq": "^1.8.0",
"mqtt": "^4.1.0",
"toml": "^3.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@losant/eslint-config-losant": "^1.3.11",
"aedes": "^0.42.2",
"eslint-plugin-jest": "^23.13.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"killable": "^1.0.1",
"lint-staged": "^10.2.11"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "esw"
},
"eslintConfig": {
"extends": [
"@losant/eslint-config-losant/env/node",
"plugin:jest/recommended"
]
}
}