{
  "name": "kauth-sdk-node",
  "version": "2.1.1",
  "description": "",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "types": "dist",
  "scripts": {
    "clean": "rm -rf dist coverage",
    "build": "tsc",
    "watch": "tsc -w",
    "type-check": "tsc --noEmit",
    "lint": "eslint . --fix --ext .ts",
    "test": "multi='spec=- mocha-junit-reporter=-' mocha  --reporter=mocha-multi --recursive --require ts-node/register 'test/**/*.ts'",
    "ci": "nyc -t coverage --reporter=cobertura npm run test",
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add ."
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "axios": "^0.19.2",
    "camelcase-keys": "^6.2.2",
    "dayjs": "^1.8.29",
    "jsonwebtoken": "^8.5.1",
    "lru-cache": "^6.0.0"
  },
  "devDependencies": {
    "@types/jsonwebtoken": "^8.5.0",
    "@types/lru-cache": "^5.1.0",
    "@types/mocha": "^10.0.1",
    "@types/node": "^16.18.69",
    "@types/sinon": "^9.0.4",
    "@typescript-eslint/eslint-plugin": "^3.7.1",
    "@typescript-eslint/parser": "^3.7.1",
    "conventional-changelog-cli": "^2.1.0",
    "egg": "^2.27.0",
    "eslint": "^7.5.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-prettier": "^3.3.1",
    "lint-staged": "^10.5.3",
    "mocha": "^10.2.0",
    "mocha-junit-reporter": "^2.0.2",
    "mocha-multi": "^1.1.7",
    "nyc": "^15.1.0",
    "prettier": "^2.2.1",
    "sinon": "^9.0.2",
    "ts-node": "^8.10.2",
    "typescript": "^5.8.3"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "lcov",
      "text",
      "text-summary"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "eslint --fix"
    ]
  }
}
