{
  "name": "@lukesthl/ts-axios-digest-auth",
  "version": "1.0.5",
  "description": "A library which implements HTTP digest authentication for axios clients. With generic typescript support",
  "main": "./dist/index.js",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf ./dist/",
    "lint": "eslint ./src/ --fix",
    "semantic-release": "semantic-release",
    "test": "jest --coverage",
    "test:watch": "jest --watch"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lukesthl/ts-axios-digest-auth.git"
  },
  "license": "MIT",
  "author": {
    "name": "Luke",
    "email": "lukesthl@users.noreply.github.com",
    "url": "https://github.com/lukesthl"
  },
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "axios",
    "digest-auth",
    "typescript",
    "axios-digest-auth"
  ],
  "bugs": {
    "url": "https://github.com/lukesthl/ts-axios-digest-auth/issues"
  },
  "homepage": "https://github.com/lukesthl/ts-axios-digest-auth#readme",
  "devDependencies": {
    "@ryansonshine/commitizen": "^4.2.8",
    "@ryansonshine/cz-conventional-changelog": "^3.3.4",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.10",
    "@typescript-eslint/eslint-plugin": "^5.56.0",
    "@typescript-eslint/parser": "^5.56.0",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "eslint": "^8.36.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.5.0",
    "prettier": "^2.8.7",
    "semantic-release": "^21.0.0",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "tsup": "^6.7.0",
    "typescript": "^5.0.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "publishConfig": {
    "access": "public"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits"
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github",
      "@semantic-release/git",
      [
        "@semantic-release/changelog",
        {
          "changelogFile": "CHANGELOG.md"
        }
      ]
    ]
  },
  "dependencies": {
    "axios": "^1.3.4"
  }
}
