{
  "name": "@skutopia/logger",
  "version": "4.0.0",
  "description": "SKUtopia logger",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "scripts": {
    "test": "npm run build && mocha",
    "test:watch": "npm run build && mocha --watch",
    "lint": "eslint src/**/*.ts && prettier --check src/**/*.ts && commitlint --from main --to HEAD --verbose",
    "build": "tsc -p .",
    "build-docs": "typedoc --out docs src/index.ts",
    "commit": "cz",
    "release": "npm run build && standard-version && git push --follow-tags"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "build/**/*"
  ],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@commitlint/cli": "^16.2.1",
    "@commitlint/config-conventional": "^16.2.1",
    "@jsdevtools/chai-exec": "^2.1.1",
    "@types/chai": "^4.3.0",
    "@types/cls-hooked": "^4.3.3",
    "@types/express": "^4.17.13",
    "@types/mocha": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^6.12.0",
    "@typescript-eslint/parser": "^6.12.0",
    "axios": "^0.24.0",
    "chai": "^4.3.4",
    "chai-http": "^4.3.0",
    "chai-json": "^1.0.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.5.0",
    "express": "^4.17.2",
    "husky": "^7.0.4",
    "mocha": "^9.1.3",
    "prettier": "^2.5.1",
    "standard-version": "^9.3.2",
    "ts-node": "^10.4.0",
    "typedoc": "^0.25.3",
    "typescript": "5.2"
  },
  "dependencies": {
    "express-winston": "^4.2.0",
    "winston": "^3.3.3"
  },
  "prettier": {
    "singleQuote": true
  },
  "mocha": {
    "recursive": true,
    "extension": "ts",
    "watch-files": [
      "src/**/*.ts"
    ],
    "spec": [
      "src/**/*.test.ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "exit": true,
    "timeout": 30000
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
