package.json
{
"name": "karl",
"version": "1.1.0",
"description": "Very fast and simplistic logger that logs to the console.",
"main": "./lib/karl.js",
"scripts": {
"test": "mocha --require test/support/env --bail --reporter spec --check-leaks test/",
"test-ci": "istanbul cover _mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/",
"test-cov": "istanbul cover _mocha -- --require test/support/env --reporter spec --check-leaks test/",
"check-coverage": "istanbul check-coverage --statements 100 --lines 100 --functions 100 --branches 100",
"benchmark": "node benchmarks/benchmark",
"make-docs": "jsdoc -c jsdoc.conf",
"check-style": "jscs .",
"code-analysis": "jshint ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/KurtPattyn/karl.git"
},
"engines": {
"node": ">=4.7.1"
},
"devDependencies": {
"bunyan": "^1.8.12",
"istanbul": "^0.4.5",
"jscs": "3.*",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"minami": "^1.2.3",
"mocha": "^3.5.3"
},
"keywords": [
"logging",
"log",
"karl",
"12factor"
],
"author": {
"name": "Kurt Pattyn",
"email": "pattyn.kurt@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KurtPattyn/karl/issues"
},
"homepage": "https://github.com/KurtPattyn/karl"
}