-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 844 Bytes
/
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
{
"name": "mqtt-as-http",
"version": "2.1.1",
"description": "this module make mqtt like http, you can request and wait response from any mqtt node",
"publisher": "[email protected]",
"maintainers": [
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"prepublishOnly": "rm -rf ./dist && tsc",
"build": "tsc",
"prepack": "tsc",
"test": "tsc && npx mocha"
},
"keywords": [
"mqtt",
"iot",
"http",
"robot",
"ros",
"request",
"response"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.21",
"@types/ws": "^8.5.3",
"chai": "^4.2.0",
"mocha": "^9.2.2",
"mqtt": "^4.3.7"
},
"repository": {
"type": "git",
"url": "https://github.com/aokihu/mqtt-as-http"
}
}