UNPKG

decogger

Version:

Centralizes the tracking of logs in a single point.

99 lines (98 loc) 2.45 kB
{ "name": "decogger", "version": "1.0.3", "description": "Centralizes the tracking of logs in a single point.", "engines": { "node": ">8.0.0" }, "main": "index.js", "scripts": { "test": "jest --coverage --verbose", "test:coverage": "npm test", "test:continuos": "jest --watchAll", "prepublishOnly": "nsp check", "pretest": "eslint .", "precommit": "lint-staged", "commitmsg": "commitlint -e $GIT_PARAMS", "changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md", "serve:coverage": "http-server coverage/ -o" }, "files": [ "lib", "index.js" ], "jest": { "coverageDirectory": "./coverage", "collectCoverageFrom": [ "lib/**/*.{js}" ], "coverageReporters": [ "json", "lcov", "cobertura", "text" ], "testEnvironment": "node" }, "devDependencies": { "@commitlint/cli": "^7.0.0", "@commitlint/config-conventional": "^7.0.1", "artillery": "^1.6.0-22", "conventional-changelog-cli": "^2.0.1", "coveralls": "^3.0.2", "eslint": "^5.4.0", "eslint-config-prettier": "^3.0.1", "eslint-config-standard": "^11.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-prettier": "^2.6.2", "eslint-plugin-promise": "^4.0.0", "eslint-plugin-standard": "^3.1.0", "http-server": "^0.11.1", "husky": "^0.14.3", "jest": "^23.5.0", "lint-staged": "^7.2.2", "nodemon": "^1.18.3", "nsp": "^3.2.1", "prettier-eslint-cli": "^4.7.1", "supertest": "^3.1.0" }, "repository": { "type": "git", "url": "git+https://github.com/madoos/decogger" }, "author": { "name": "Maurice Domínguez", "email": "maurice.ronet.dominguez@gmail.com", "url": "https://github.com/madoos" }, "license": "MIT", "bugs": { "url": "https://github.com/madoos/decogger/issues" }, "homepage": "https://github.com/madoos/decogger#readme", "lint-staged": { "*.js": [ "prettier-eslint --single-quote --bracket-spacing true --print-width 80 --semi --write", "eslint", "git add" ], "*.json": [ "prettier --write", "git add" ] }, "dependencies": { "app-root-dir": "^1.0.2", "is-promise": "^2.1.0", "ramda": "^0.25.0" }, "keywords": [ "debug", "logger", "log", "centralize", "decouple", "logs" ] }