{
  "name": "loglevelnext",
  "version": "3.0.1",
  "description": "A modern logging library for Node.js and modern browsers that provides log level mapping to the console",
  "license": "MPL",
  "repository": "shellscape/loglevelnext",
  "author": "Andrew Powell <andrew@shellscape.org>",
  "homepage": "https://github.com/shellscape/loglevelnext",
  "main": "lib/index.js",
  "engines": {
    "node": ">= 6.14.4"
  },
  "scripts": {
    "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
    "ci:lint": "npm run lint && npm run security",
    "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
    "ci:test": "npm run test",
    "commitlint": "commitlint",
    "commitmsg": "commitlint -e $GIT_PARAMS",
    "lint": "eslint --fix --cache lib test",
    "lint-staged": "lint-staged",
    "security": "npm audit",
    "test": "ava"
  },
  "files": [
    "lib/",
    "types/",
    "README.md"
  ],
  "dependencies": {},
  "devDependencies": {
    "@commitlint/cli": "^7.1.2",
    "@commitlint/config-conventional": "^7.1.2",
    "ava": "^1.3.1",
    "chalk": "^2.3.0",
    "eslint": "^5.15.1",
    "eslint-config-shellscape": "^2.0.2",
    "eslint-plugin-import": "^2.8.0",
    "lint-staged": "^8.1.0",
    "nyc": "^14.1.0",
    "pre-commit": "^1.2.2",
    "sinon": "^7.2.3",
    "standard-version": "^5.0.1"
  },
  "types": "types/index.d.ts",
  "keywords": [
    "browser",
    "console",
    "debug",
    "error",
    "level",
    "levels",
    "log",
    "logger",
    "logging",
    "loglevel",
    "persist",
    "persistent",
    "plugins",
    "prefix",
    "trace",
    "warn"
  ],
  "pre-commit": "lint-staged",
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  }
}
