UNPKG

@thinkdeep/k8s-manifest

Version:

Simple interface providing kubernetes javascript client object creation by use of yaml strings or objects.

54 lines (53 loc) 1.4 kB
{ "name": "@thinkdeep/k8s-manifest", "version": "2.0.6", "description": "Simple interface providing kubernetes javascript client object creation by use of yaml strings or objects.", "main": "src/index.js", "repository": "git@github.com:ThinkDeepTech/k8s-manifest.git", "author": "haydenmcp <hayden.mcparlane@gmail.com>", "license": "AGPL-3.0-only", "type": "module", "scripts": { "lint": "eslint --fix ./**/*.js", "tests": "c8 --clean mocha ./test/**/*.test.js ./test/*.test.js", "tests:coverage:publish": "npm run tests && cat ./coverage/lcov.info | coveralls" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm run tests" } }, "lint-staged": { "*.js": [ "./node_modules/.bin/eslint --fix", "prettier --write" ] }, "dependencies": { "@kubernetes/client-node": "0.15", "yaml": "^1.10.2" }, "devDependencies": { "c8": "^7.11.3", "chai": "^4.3.4", "coveralls": "^3.1.1", "eslint": "^8.14.0", "eslint-config-google": "^0.14.0", "eslint-config-prettier": "^8.5.0", "eslint-config-standard": "^17.0.0", "eslint-plugin-import": "^2.26.0", "husky": "^1.1.2", "lint-staged": "^12.4.1", "mocha": "^9.1.3", "prettier": "^2.2.1", "sinon": "^12.0.1" }, "keywords": [ "Kubernetes", "K8s", "Node", "JavaScript", "Client" ] }