forked from aslafy-z/helm-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
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
{
"name": "helm-git",
"version": "0.4.0",
"description": "npm tooling for helm-git Helm downloader plugin",
"scripts": {
"test": "bats tests/*-*.bats",
"test:e2e": "bats tests/e2e.bats",
"lint": "eclint check **/*; shellcheck 'helm-git' *.sh tests/*.bash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aslafy-z/helm-git.git"
},
"author": "Zadkiel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aslafy-z/helm-git/issues"
},
"homepage": "https://github.com/aslafy-z/helm-git#readme",
"devDependencies": {
"bats": "github:josegonzalez/bats-core#723a1fa83524f7e2b120eddd2ca5358ca5706b4f",
"eclint": "^2.8.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"shellcheck": "^0.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"relative": true,
"linters": {
"**/*": [
"eclint fix",
"git add"
],
"{helm-git,**/*.{bash,sh}}": [
"shellcheck",
"git add"
]
}
}
}