-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "helm-chart-skipper",
"version": "1.0.0",
"description": "Helm chart for deploying [skipper](https://github.com/zalando/skipper) as cluster internal service proxy",
"repository": "https://github.com/magda-io/helm-chart-skipper",
"author": "Jacky Jiang <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"helm-docs": "docker run --rm -v \"$(pwd):/helm-docs\" -u $(id -u) jnorwood/helm-docs:v1.11.3 -t ./README.md.gotmpl -o ../README.md",
"helm-lint": "helm template ./skipper -f ./test-skipper.yaml 1>/dev/null",
"update-all-charts": "helm dep up ./skipper",
"add-all-chart-version-changes": "git ls-files -m | grep Chart.yaml | xargs git add && git ls-files -m | grep Chart.lock | xargs git add",
"add-all-helm-docs-changes": "yarn helm-docs && git ls-files -m | grep -i readme.md | xargs git add",
"version": "yarn update-helm-chart-version && yarn update-all-charts && yarn add-all-chart-version-changes && yarn add-all-helm-docs-changes"
},
"private": true,
"devDependencies": {
"@magda/ci-utils": "^1.0.5"
}
}