-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 910 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
40
41
{
"name": "infinite-mqtt",
"version": "0.7.0",
"description": "A super simple MQTT client for performance tests",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"categories": [
"Other"
],
"keywords": [
"mqtt",
"performance",
"latency"
],
"repository": {
"type": "git",
"url": "git@github.com:davideicardi/infinite-mqtt.git"
},
"homepage": "https://github.com/davideicardi/infinite-mqtt",
"author": "Davide Icardi",
"license": "ISC",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"meow": "^10.1.1",
"mqtt": "^4.2.8",
"progress-logger-js": "^0.5.1"
},
"bin": {
"infinite-mqtt": "./index.js"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.11.0",
"@types/ws": "^8.2.0",
"typescript": "^4.4.4"
}
}