forked from spotbugs/spotbugs-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 980 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
45
46
{
"name": "spotbugs-gradle-plugin",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.3",
"conventional-changelog-conventionalcommits": "^5.0.0",
"gradle-semantic-release-plugin": "1.7.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"semantic-release": "19.0.3"
},
"scripts": {
"prepare": "husky install"
},
"lint-staged": {
"*.md,package.json": [
"prettier --write"
]
},
"release": {
"tagFormat": "${version}",
"branches": [
{
"name": "master"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"gradle-semantic-release-plugin",
[
"@semantic-release/github",
{
"assets": [
"build/libs/*.jar"
]
}
]
]
},
"engines": {
"node": "^16.13.0"
}
}