ksmithut/logget

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "logget",
  "version": "1.0.1",
  "description": "A wrapper around winston logger for scalable application logging",
  "main": "index.js",
  "scripts": {
    "jshint": "jshint --reporter node_modules/jshint-stylish index.js",
    "check-cov": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
    "checkcov": "istanbul check-coverage",
    "test": "istanbul cover _mocha",
    "posttest": " npm run checkcov; npm run jshint;",
    "codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ksmithut/logget.git"
  },
  "keywords": [
    "log",
    "winston",
    "application"
  ],
  "author": "ksmithut",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ksmithut/logget/issues"
  },
  "homepage": "https://github.com/ksmithut/logget#readme",
  "devDependencies": {
    "chai": "^3.2.0",
    "clear-require": "^1.0.1",
    "codeclimate-test-reporter": "^0.1.0",
    "istanbul": "^0.3.17",
    "jshint": "^2.8.0",
    "jshint-stylish": "^2.0.1",
    "mocha": "^2.2.5",
    "mocha-lcov-reporter": "0.0.2"
  },
  "dependencies": {
    "object-assign": "^3.0.0",
    "winston": "^1.0.1"
  }
}