{
  "name": "fast-node-logger",
  "version": "3.0.4",
  "description": "fast file logger base on pino",
  "repository": {
    "type": "git",
    "url": "https://github.com/saostad/fast-node-logger.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "format": "prettier --check \"src/**/*.ts\" --write",
    "lint": "eslint --ext \".ts,.js\" src --quiet",
    "test": "jest",
    "test:watch": "jest --watch",
    "gen-docs": "typedoc src/index.ts",
    "postgen-docs": "node ./config/github.js",
    "tag": "node ./config/tag.js",
    "auto-changelog": "auto-changelog --hide-credit --breaking-pattern \"breaking:\"",
    "gen-changelog": "npm run auto-changelog && git add CHANGELOG.md && git commit -m \"doc: change log\"",
    "tsc": "tsc",
    "tsc:watch": "tsc --watch",
    "prepublishOnly": "npm-run-all -s tsc gen-docs",
    "postpublish": "npm-run-all -s tag gen-changelog",
    "ts-node": "ts-node src/app.ts",
    "start": "nodemon --watch src -e ts --exec \"npm run ts-node\"",
    "start:docker": "nodemon -L --watch src -e ts --exec \"npm run ts-node\""
  },
  "keywords": [
    "node",
    "logger",
    "fast",
    "rotator",
    "pino",
    "file",
    "log"
  ],
  "author": "Saeid Ostad",
  "license": "MIT",
  "nodemonConfig": {
    "ignore": [
      "test/*",
      "docs/*"
    ],
    "delay": "1000"
  },
  "devDependencies": {
    "@types/jest": "^29.2.0",
    "@types/node": "^16.18.0",
    "@types/rimraf": "^3.0.2",
    "@typescript-eslint/eslint-plugin": "^5.40.1",
    "@typescript-eslint/parser": "^5.40.1",
    "auto-changelog": "^2.4.0",
    "eslint": "^8.26.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.2.1",
    "nodemon": "^2.0.20",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.7.1",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.18",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "pino": "^8.7.0",
    "pino-pretty": "^9.1.1",
    "rimraf": "^3.0.2"
  }
}
