{
  "name": "turbo-log",
  "version": "2.2.2",
  "description": "Turbo powered logging for debugging and testing in Node or the Browser",
  "keywords": [
    "logging",
    "testing",
    "debugging"
  ],
  "homepage": "https://github.com/dragonworx/turbo-log",
  "bugs": {
    "url": "https://github.com/dragonworx/turbo-log/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dragonworx/turbo-log.git"
  },
  "license": "MIT",
  "author": "",
  "main": "dist/index.cjs.js",
  "jsdelivr": "dist/bundle.min.js",
  "unpkg": "dist/bundle.min.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "prebuild": "npm run clean",
    "build": "tsc && tsc-alias",
    "postbuild": "npm run rollup && npm run prepare-packages && npm run prepare-dist",
    "clean": "rimraf -r dist",
    "commit": "git commit -m ''",
    "doc": "./node_modules/.bin/typedoc src/index.ts",
    "postinstall": "chmod +x ./tools/postinstall.sh && ./tools/postinstall.sh",
    "nuke": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && rm -rf ./dist",
    "pack": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
    "prepare": "npm run build",
    "prepare-dist": "node tools/prepare-dist.js",
    "prepare-packages": "node tools/prepare-package.js",
    "rollup": "rollup -c tools/rollup.config.js",
    "setup:husky": "npx husky install && chmod +x .husky/{pre*,commit*}",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --cache --fix"
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^17.0.3",
    "@rollup/plugin-commonjs": "^22.0.2",
    "@rollup/plugin-node-resolve": "^13.3.0",
    "@types/jest": "^27.4.0",
    "@types/node": "^18.6.2",
    "@typescript-eslint/eslint-plugin": "^5.9.1",
    "@typescript-eslint/parser": "^5.9.1",
    "commitizen": "^4.2.4",
    "commitlint": "^17.0.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.6.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-unused-imports": "^2.0.0",
    "husky": "^8.0.0",
    "jest": "^27.4.7",
    "lint-staged": "^12.1.7",
    "prettier": "^2.7.1",
    "pretty-quick": "^3.1.3",
    "rimraf": "^3.0.2",
    "rollup": "^2.72.1",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^27.1.3",
    "tsc-alias": "^1.3.9",
    "typedoc": "^0.22.15",
    "typescript": "^4.4.2"
  },
  "publishConfig": {
    "access": "public"
  }
}
