UNPKG

lss-mqtt

Version:

LSS-MQTT framework in NodeJS implementation"

51 lines (50 loc) 1.26 kB
{ "name": "lss-mqtt", "version": "0.1.0", "description": "LSS-MQTT framework in NodeJS implementation\"", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "start": "node dist/index.js", "build": "tsc", "build-clean": "npm run clean && tsc", "postinstall": "npm run build", "go": "tsc && node dist/index.js", "dev": "nodemon -e ts --exec \"npm run go\"", "watch": "tsc --watch", "test": "mocha --opts tests/mocha.opts", "test-watch": "mocha --opts tests/mocha.opts --watch", "clean": "rm -rf dist", "lint": "tslint -c tslint.json 'src/**/*.ts'", "lint-fix": "tslint -c tslint.json 'src/**/*.ts' --fix" }, "devDependencies": { "@types/node": "^13.13.5", "@types/express": "^4.17.6", "tslint": "^6.1.1", "typescript": "^3.8.3", "mocha": "^7.1.1", "nodemon": "^2.0.3" }, "keywords": [ "MQTT", "mqtt", "security", "light security", "iot", "chacha20poly1305", "crypto", "secure communication", "secure iot" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/pantalejmon/lss-mqtt" }, "dependencies": { "@types/mqtt": "^2.5.0", "mqtt": "^4.0.1" } }