gp-mqtt-client
Version:
Simple MQTT Client (no auth, decode base64, ...)
59 lines • 1.54 kB
JSON
{
"name": "gp-mqtt-client",
"version": "0.2.1",
"description": "Simple MQTT Client (no auth, decode base64, ...)",
"main": "dist/gp-mqtt-client.js",
"bin": {
"gp-mqtt-client": "bin/gp-mqtt-client"
},
"scripts": {
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"build": "tsc --sourceMap",
"test": "mocha --require ts-node/register ./test/test.ts --timeout 10000"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gpfister/gp-mqtt-client.git"
},
"keywords": [
"MQTT",
"client",
"Mosquitto",
"base64",
"json"
],
"author": "Greg PFISTER",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpfister/gp-mqtt-client/issues"
},
"homepage": "https://github.com/gpfister/gp-mqtt-client#readme",
"dependencies": {
"dotenv": "^10.0.0",
"log4js": "^6.3.0",
"mqtt": "^4.2.8",
"uuid": "^8.3.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.9",
"@types/uuid": "^8.3.3",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-chai-friendly": "^0.7.2",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.2"
}
}