{
    "name": "@creditkarma/vault-client",
    "version": "1.0.0",
    "description": "A client for communicating with Hashicorp Vault written in TypeScript",
    "main": "dist/main/index.js",
    "types": "dist/main/index.d.ts",
    "files": [
        "dist/main"
    ],
    "keywords": [
        "typescript",
        "hashicorp",
        "vault"
    ],
    "scripts": {
        "clean:all": "rimraf dist/ node_modules/ package-lock.json",
        "clean": "rimraf dist/",
        "lint": "eslint --fix './src/**/*.ts'",
        "format": "prettier --write 'src/**/*.ts'",
        "build": "npm run clean && npm run lint && npm run format && tsc",
        "docker": "docker-compose up --force-recreate vault &",
        "docker:kill": "docker-compose kill",
        "pretest": "npm run build && npm run docker",
        "posttest": "npm run docker:kill",
        "test": "wait-on --timeout 20000 http://localhost:8201 && npm run lint && npm run test:unit && npm run test:integration",
        "test:unit": "lab --typescript --timeout 10000 --verbose -l -S ./src/tests/unit/*.spec.ts",
        "test:integration": "lab  --typescript --timeout 15000 --verbose -l -S ./src/tests/integration/*.spec.ts",
        "release:patch": "npm version patch && npm run release:publish",
        "release:minor": "npm version minor && npm run release:publish",
        "release:major": "npm version major && npm run release:publish",
        "release:publish": "git push --follow-tags"
    },
    "author": "Credit Karma",
    "license": "Apache-2.0",
    "repository": {
        "type": "git",
        "url": "https://github.com/creditkarma/vault-client"
    },
    "devDependencies": {
        "@hapi/code": "^9.0.0",
        "@hapi/lab": "^25.0.1",
        "@types/node": "^16.11.34",
        "@typescript-eslint/eslint-plugin": "^5.15.0",
        "@typescript-eslint/parser": "^5.15.0",
        "eslint": "^8.15.1",
        "eslint-config-prettier": "^8.5.0",
        "eslint-plugin-prettier": "^4.0.0",
        "prettier": "^2.6.0",
        "rimraf": "^3.0.2",
        "tslint": "^5.13.1",
        "typescript": "4.6.x",
        "wait-on": "^6.0.1"
    },
    "dependencies": {
        "@types/lodash": "^4.14.136",
        "got": "^11.8.3",
        "lodash": "^4.17.15"
    }
}
