-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.49 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
58
59
60
61
{
"name": "@pera-swarm/mqtt-router",
"version": "1.3.2",
"description": "An easy-to-use and flexible routing library for MQTT",
"main": "index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"index.js"
],
"directories": {
"dist": "dist",
"test": "test"
},
"scripts": {
"build": "tsc",
"client": "nodemon test\\index.js",
"dev": "tsc --watch",
"test": "node test",
"format": "prettier --write \"**/*.+(ts|js|json|yml|yaml|md)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pera-Swarm/mqtt-router.git"
},
"keywords": [
"MQTT",
"Router",
"MQTTRouter",
"MQTT-Router",
"MQTT Router",
"Pera",
"Pera-Swarm"
],
"author": "Pera-Swarm",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/Pera-Swarm/mqtt-router/issues"
},
"homepage": "https://github.com/Pera-Swarm/mqtt-router#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"node-cron": "^3.0.2"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/node-cron": "^2.0.3",
"@types/uuid": "^9.0.2",
"dotenv": "^8.2.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"queue": "^6.0.2",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"peerDependencies": {
"mqtt": "^4.x"
}
}