forked from spotbugs/spotbugs-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 962 Bytes
/
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
{
"devDependencies": {
"commitlint": "^11.0.0",
"conventional-changelog-conventionalcommits": "^4.5.0",
"gradle-semantic-release-plugin": "1.4.13",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"semantic-release": "17.3.0"
},
"scripts": {
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "gradle/spotless.sh && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.md,package.json": [
"prettier --write"
]
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"gradle-semantic-release-plugin",
[
"@semantic-release/github",
{
"assets": [
"build/libs/*.jar"
]
}
]
]
},
"engines": {
"node": "^12.12.0"
}
}