UNPKG

@nrchkb/logger

Version:

Unified Logger for Node-RED nodes (using debug)

55 lines (54 loc) 1.49 kB
{ "name": "@nrchkb/logger", "version": "3.1.1", "description": "Unified Logger for Node-RED nodes (using debug)", "main": "build/index.js", "scripts": { "build": "npm run clean && tsc", "clean": "del-cli \"./build\"", "test": "cross-env DEBUG=LOGGER* mocha -r ts-node/register './src/**/*.test.[tj]s' --exit", "prettier": "prettier --write \"**/*.{js,ts}\"", "eslint": "eslint src/**/*.{js,ts} --fix" }, "repository": { "type": "git", "url": "git+https://github.com/NRCHKB/logger.git" }, "keywords": [ "node-red", "NRCHKB", "logger", "debug" ], "author": "Tadeusz Wyrzykowski <shaquu@icloud.com> (https://github.com/Shaquu)", "license": "Apache-2.0", "bugs": { "url": "https://github.com/NRCHKB/logger/issues" }, "homepage": "https://github.com/NRCHKB/logger#readme", "dependencies": { "debug": "^4.3.5" }, "devDependencies": { "@types/mocha": "^10.0.7", "@types/node": "^18", "@types/node-red": "^1.3.5", "@typescript-eslint/eslint-plugin": "^7.15.0", "@typescript-eslint/parser": "^7.15.0", "babel-eslint": "^10.1.0", "cross-env": "^7.0.3", "del-cli": "^5.1.0", "eslint": "^8", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "mocha": "^10.6.0", "node-red": "^4.0.2", "node-red-node-test-helper": "^0.3.4", "prettier": "^3.3.2", "ts-node": "^10.9.2", "typescript": "^5.5.3" }, "files": [ "/build" ] }