{ "name": "mqtt-explorer", "version": "1.0.0", "description": "", "main": "src/index.ts", "scripts": { "test": "mocha", "test-inspect": "mocha --inspect-brk", "coverage": "nyc mocha", "debug": "ts-node --inspect ./src/index.ts" }, "author": "", "license": "ISC", "nyc": { "include": [ "src/**/*.ts", "src/**/*.tsx" ], "exclude": [ "src/**/spec/*.spec.ts" ], "extension": [ ".ts", ".tsx" ], "require": [ "ts-node/register" ], "reporter": [ "text-summary", "html" ], "sourceMap": true, "instrument": true }, "dependencies": { "@types/sha1": "^1.1.1", "@types/socket.io": "^2.1.2", "mqtt": "^2.18.8", "sha1": "^1.1.1", "socket.io": "^2.2.0", "tslint": "^5.12.0", "typescript": "^3.2.2" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/mocha": "^5.2.5", "@types/node": "^10.12.18", "chai": "^4.2.0", "mocha": "^5.2.0", "nyc": "^13.1.0", "source-map-support": "^0.5.9", "ts-node": "^7.0.1", "tslint-strict-null-checks": "^1.0.1" } }