UNPKG

git-to-k8s

Version:

Small tool to automate the git to url flow on k8s

67 lines (66 loc) 1.64 kB
{ "name": "git-to-k8s", "version": "0.4.2", "description": "Small tool to automate the git to url flow on k8s", "main": "index.js", "scripts": { "lint": "eslint --plugin markdown --ext js,md .", "test": "mocha --check-leaks --bail --no-exit --reporter spec test/", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --no-exit --reporter dot test/", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --no-exit --reporter spec test/" }, "repository": { "type": "git", "url": "git+https://github.com/devfans/git-to-k8s.git" }, "devDependencies": { "after": "0.8.2", "eslint": "^5.16.0", "eslint-plugin-markdown": "^1.0.0", "istanbul": "1.0.0-alpha.2", "mocha": "^6.1.4", "supertest": "^4.0.2" }, "bin": { "git-to-k8s": "cli.js" }, "keywords": [ "commandline", "parser", "arguments", "params", "git", "deploy", "kubernetes", "helm" ], "author": "stefan.liu", "license": "ISC", "bugs": { "url": "https://github.com/devfans/git-to-k8s/issues" }, "homepage": "https://github.com/devfans/git-to-k8s#readme", "dependencies": { "argio": "0.0.3", "shelljs": "^0.8.3" }, "tmp_dir": "/var/tmp/git-to-k8s", "proj_file": "package.json", "deploy": { "registry": "devfans", "images": [ { "name": "test", "tag": "0.0.1", "path": "sample" } ], "charts": [ { "values": "values.yaml", "release": "test-git-to-k8s", "path": "sample/charts/test" } ] } }