{
    "name": "@wassimbenzarti/kubernetes-client-node",
    "version": "1.0.0-rc2-latest",
    "description": "NodeJS client for kubernetes",
    "repository": {
        "type": "git",
        "url": "https://github.com/kubernetes-client/javascript.git"
    },
    "files": [
        "dist/*.ts",
        "dist/*.js",
        "dist/gen/*.ts",
        "dist/gen/*.js",
        "dist/gen/**/*.ts",
        "dist/gen/**/*.js",
        "README.md"
    ],
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "format": "prettier --loglevel error --write \"./src/**/*.ts\"",
        "lint": "tslint --project \".\" && prettier --check \"./src/**/*.ts\" && tslint --project \"./examples/typescript\"",
        "clean": "rm -Rf node_modules/ dist/",
        "build": "tsc",
        "generate": "./generate-client.sh",
        "watch": "tsc --watch",
        "test": "nyc mocha",
        "prepare": "npm run build && husky install",
        "prepack": "npm run build",
        "docs": "typedoc src/gen/api"
    },
    "nyc": {
        "include": [
            "src/**/*.ts"
        ],
        "exclude": [
            "src/gen/*/**.ts",
            "src/index.ts",
            "src/*_test.ts"
        ],
        "extension": [
            ".ts"
        ],
        "reporter": [
            "text",
            "lcov",
            "text-summary",
            "html"
        ],
        "sourceMap": true,
        "instrument": true,
        "all": true
    },
    "author": "Kubernetes Authors",
    "license": "Apache-2.0",
    "dependencies": {
        "@types/js-yaml": "^4.0.1",
        "@types/node": "^20.3.1",
        "@types/node-fetch": "^2.6.3",
        "@types/stream-buffers": "^3.0.3",
        "@types/tar": "^6.1.1",
        "@types/underscore": "^1.8.9",
        "@types/ws": "^8.5.4",
        "byline": "^5.0.0",
        "form-data": "^4.0.0",
        "isomorphic-ws": "^5.0.0",
        "js-yaml": "^4.1.0",
        "jsonpath-plus": "^7.2.0",
        "node-fetch": "^2.6.9",
        "openid-client": "^5.4.2",
        "rfc4648": "^1.3.0",
        "stream-buffers": "^3.0.2",
        "tar": "^6.1.11",
        "tmp-promise": "^3.0.2",
        "tslib": "^2.5.0",
        "underscore": "^1.9.1",
        "url-parse": "^1.4.3",
        "ws": "^8.13.0"
    },
    "devDependencies": {
        "@types/byline": "^4.2.31",
        "@types/chai": "^4.3.0",
        "@types/chai-as-promised": "^7.1.5",
        "@types/mocha": "^10.0.1",
        "@types/mock-fs": "^4.13.1",
        "chai": "^4.2.0",
        "chai-as-promised": "^7.1.1",
        "husky": "^8.0.0",
        "jasmine": "^5.0.0",
        "mocha": "^10.2.0",
        "mock-fs": "^5.2.0",
        "nock": "^13.2.9",
        "nyc": "^15.1.0",
        "prettier": "^3.0.0",
        "source-map-support": "^0.5.9",
        "ts-mockito": "^2.3.1",
        "ts-node": "^8.2.0",
        "tslint": "^6.1.3",
        "typedoc": "^0.24.8",
        "typescript": "~5.1.3"
    },
    "bugs": {
        "url": "https://github.com/kubernetes-client/javascript/issues"
    },
    "homepage": "https://github.com/kubernetes-client/javascript#readme",
    "keywords": [
        "kubernetes",
        "client"
    ],
    "prettier": {
        "tabWidth": 4,
        "printWidth": 110,
        "trailingComma": "all",
        "singleQuote": true,
        "arrowParens": "always"
    },
    "overrides": {
        "colors": "1.4.0"
    }
}
