{
  "version": "4.1.0",
  "project": "common",
  "name": "@calvear/azure-key-vault",
  "title": "Azure Key Vault handler library",
  "description": "Wrapper for @azure/keyvault-secrets for ease secrets handler in JSON files.",
  "author": "Alvear Candia, Cristopher Alejandro <calvear93@gmail.com>",
  "repository": "https://github.com/calvear93/azure-key-vault",
  "license": "MIT",
  "private": false,
  "keywords": [
    "azure",
    "key-vault",
    "secrets",
    "typescript"
  ],
  "dependencies": {
    "@azure/identity": "^3.3.0",
    "@azure/keyvault-secrets": "^4.7.0",
    "minimist": "^1.2.8"
  },
  "devDependencies": {
    "@types/jest": "^29.5.4",
    "@types/minimist": "^1.2.2",
    "@types/node": "^20.6.0",
    "@typescript-eslint/eslint-plugin": "^6.6.0",
    "@typescript-eslint/parser": "^6.6.0",
    "copyfiles": "^2.4.1",
    "eslint": "^8.49.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-jest": "^27.2.3",
    "eslint-plugin-jest-formatting": "^3.1.0",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-sonarjs": "^0.21.0",
    "eslint-plugin-unicorn": "^48.0.1",
    "jest": "^29.6.4",
    "prettier": "^3.0.3",
    "ts-jest": "^29.1.1",
    "tsc-alias": "^1.8.7",
    "typescript": "^5.2.2"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "bin": {
    "akv": "bin/akv.js"
  },
  "engines": {
    "node": "~16.0.0 || >=18"
  },
  "scripts": {
    "build": "pnpm prebuild && tsc --p tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm postbuild",
    "test": "jest --watchAll=false --verbose",
    "pub": "pnpm build && pnpm login && pnpm publish dist --access public",
    "lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
    "lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src/",
    "prebuild": "pnpx del-cli dist/**",
    "postbuild": "copyfiles package.json README.md LICENSE.md CHANGELOG.md dist"
  }
}