@ladjs/logger
Version:
Logger for Lad
112 lines (111 loc) • 2.59 kB
JSON
{
"name": "@ladjs/logger",
"description": "Logger for Lad",
"version": "0.1.0",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)",
"bugs": {
"url": "https://github.com/ladjs/logger/issues"
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)",
"Alexis Tyler <xo@wvvw.me> (https://wvvw.me/)"
],
"dependencies": {
"auto-bind": "^1.1.0",
"chalk": "^2.3.0",
"debug": "^3.1.0",
"is-plain-obj": "^1.1.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^0.24.0",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"nyc": "^11.4.1",
"prettier": "^1.9.2",
"remark-cli": "^4.0.0",
"remark-preset-github": "^0.0.7",
"sinon": "^4.1.3",
"xo": "^0.19.0"
},
"engines": {
"node": ">=8.x"
},
"homepage": "https://github.com/ladjs/logger",
"keywords": [
"transport",
"api",
"wrapper",
"official",
"ladjs",
"lad-logger",
"logger",
"lass",
"winston",
"bunyan",
"log",
"raven",
"sentry",
"airbrake",
"cabin",
"bugsnag",
"timber"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write --single-quote --trailing-comma none",
"git add"
],
"*.md": ["remark . -qfo", "git add"]
},
"main": "index.js",
"remarkConfig": {
"plugins": ["preset-github"]
},
"repository": {
"type": "git",
"url": "https://github.com/ladjs/logger"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "xo && remark . -qfo",
"precommit": "lint-staged && npm test",
"test": "npm run lint && npm run test-coverage",
"test-coverage": "cross-env DEBUG=ava-tests NODE_ENV=test nyc ava"
},
"xo": {
"extends": "prettier",
"plugins": ["prettier"],
"parserOptions": {
"sourceType": "script"
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
}
],
"max-len": [
"error",
{
"code": 80,
"ignoreUrls": true
}
],
"complexity": ["error", 21],
"capitalized-comments": "off",
"camelcase": "off",
"no-warning-comments": "off"
},
"space": true
}
}