raynode/nx-logger

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "author": "Tobias Kopelke <nox@raynode.de>",
  "dependencies": {},
  "description": "Logging utility that grows with the application",
  "devDependencies": {
    "@types/faker": "^5.1.0",
    "@types/jest": "^26.0.0",
    "@types/node": "^12.7.2",
    "@types/sinon": "^10.0.0",
    "codecov": "^3.5.0",
    "commitizen": "^4.0.3",
    "coveralls": "^3.0.6",
    "cz-conventional-changelog": "^3.0.2",
    "faker": "^5.0.0",
    "jest": "^25.1.0",
    "jest-cli": "^27.0.0",
    "semantic-release": "^17.0.1",
    "sinon": "^11.0.0",
    "travis-deploy-once": "^5.0.11",
    "ts-jest": "^25.0.0",
    "ts-node": "^10.0.0",
    "typescript": "^3.5.3"
  },
  "files": [
    "dist/*"
  ],
  "keywords": [
    "logging",
    "meta-logging"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "name": "@raynode/nx-logger",
  "repository": {
    "type": "git",
    "url": "https://github.com/raynode/nx-logger"
  },
  "scripts": {
    "commit": "git-cz",
    "lint": "tslint 'lib/**/*.ts'",
    "lint:fix": "tslint --fix 'lib/**/*.ts'",
    "build": "rm -rf dist && tsc -p tsconfig.release.json",
    "test": "npm run test:coverage",
    "test-only": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "semantic-release": "semantic-release",
    "upload": "npm publish --access public",
    "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
    "posttest": "codecov -f coverage/*.json",
    "travis-deploy-once": "travis-deploy-once"
  },
  "types": "dist/index.d.ts",
  "version": "0.0.0-development",
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}