{ "name": "mqtt-explorer-backend", "version": "1.0.0", "description": "", "main": "build/index.js", "scripts": { "test": "mocha", "build": "tsc", "test-inspect": "mocha --inspect-brk", "coverage": "nyc mocha", "debug": "ts-node --inspect ./src/index.ts", "postinstall": "npm run build" }, "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 } }