Files
mqtt-explorer/backend/package.json
Thomas Nordquist 070b72b304 Document license
2019-04-27 10:29:37 +02:00

39 lines
711 B
JSON

{
"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": "yarn build"
},
"author": "",
"license": "CC-BY-ND-4.0",
"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
}
}