-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
49 lines (49 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "helm-git",
"private": true,
"version": "1.3.0",
"description": "npm tooling for helm-git Helm downloader plugin",
"scripts": {
"prepare": "husky install",
"test": "bats --print-output-on-failure tests/*-*.bats",
"test:e2e": "bats --print-output-on-failure tests/e2e.bats",
"lint": "editorconfig-checker; shellcheck 'helm-git' *.sh tests/*.bash",
"bump-version": "npm run bump-version:helm-plugin && npm run bump-version:readme && npm run bump-version:npm",
"bump-version:helm-plugin": "sed -i \"s/version: \\\".*\\\"/version: \\\"${npm_config_to}\\\"/\" plugin.yaml",
"bump-version:readme": "sed -E -i \"s/helm-git --version .+$/helm-git --version ${npm_config_to}/\" README.md",
"bump-version:npm": "npm version --no-git-tag-version ${npm_config_to}",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/aslafy-z/helm-git.git"
},
"author": "Zadkiel <hello@zadkiel.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aslafy-z/helm-git/issues"
},
"homepage": "https://github.com/aslafy-z/helm-git#readme",
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"bats": "1.11.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"editorconfig-checker": "5.1.8",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"semantic-release": "24.2.0",
"shellcheck": "3.0.0"
},
"engines": {
"node": ">=20.8.1"
},
"lint-staged": {
"**/*": [
"editorconfig-checker"
],
"{helm-git,**/*.{bash,sh}}": [
"shellcheck -x"
]
}
}