-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "devicehive-mqtt",
"version": "2.0.0",
"description": "MQTT plugin for DeviceHive server",
"main": "src/broker.js",
"scripts": {
"test": "mocha test/unit/**/**.spec.js",
"unitTest": "mocha test/unit/**/**.spec.js",
"integrationTest": "mocha test/integration/**/**.spec.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devicehive/devicehive-mqtt.git"
},
"keywords": [
"DeviceHive",
"MQTT",
"API",
"IoT"
],
"author": "Ihor Trambovetskyi ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/devicehive/devicehive-mqtt/issues"
},
"homepage": "https://github.com/devicehive/devicehive-mqtt#readme",
"dependencies": {
"aedes": "^0.47.0",
"aedes-persistence-redis": "^9.0.1",
"aedes-stats": "^4.0.0",
"debug": "^4.3.4",
"json-evn-configurator": "^1.0.6",
"lru-cache": "^7.13.1",
"mqemitter-redis": "^5.0.0",
"pm2": "^5.2.0",
"pmx": "^1.6.7",
"randomstring": "^1.2.2",
"winston": "^3.8.1",
"ws": "^8.8.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"mqtt": "^4.3.7",
"prettier": "^2.7.1",
"sinon": "^14.0.0"
}
}