{
  "name": "rrios-logger",
  "version": "1.0.0",
  "description": "",
  "source": "src/index.ts",
  "main": "dist/index.js",
  "module": "dist/index.module.js",
  "unpkg": "dist/index.umd.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "CHANGELOG.md",
    "package.json",
    "package-lock.json",
    "License.txt",
    "README.md"
  ],
  "keywords": [
    "Logger",
    "Winston",
    "Enhance",
    "Tool"
  ],
  "scripts": {
    "lint": "eslint src --ext ts",
    "test": "jest --passWithNoTests",
    "validation": "npm run lint && npm run test",
    "build": "microbundle -f es,cjs,umd",
    "build:watch": "microbundle watch",
    "dev": "nodemon --watch src --watch dev.ts --exec ts-node dev.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rriosper/logger"
  },
  "author": "Roberto Ríos <contact@rrios.dev>",
  "license": "ISC",
  "devDependencies": {
    "@types/jest": "^26.0.20",
    "@typescript-eslint/eslint-plugin": "^4.14.0",
    "@typescript-eslint/parser": "^4.14.0",
    "eslint": "^7.18.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.3",
    "husky": "^4.3.8",
    "jest": "^26.6.3",
    "microbundle": "^0.13.0",
    "nodemon": "^2.0.7",
    "ts-jest": "^26.4.4",
    "ts-node": "^9.1.1",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "winston": "^3.3.3"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm run validation"
    }
  }
}
