-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.39 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.39 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"repository": {
"type": "git",
"url": "git+https://github.com/bendavies99/BabbleBot-Server.git"
},
"bugs": {
"url": "https://github.com/bendavies99/BabbleBot-Server/issues"
},
"homepage": "https://github.com/bendavies99/BabbleBot-Server#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"commitlint": "^11.0.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"gradle-semantic-release-plugin": "^1.4.14",
"husky": "^7.0.2",
"lint-staged": "^13.2.2",
"prettier": "^2.2.1",
"remark-cli": "^11.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"semantic-release": "^17.4.1"
},
"scripts": {
"release": "semantic-release"
},
"remarkConfig": {
"plugins": ["remark-preset-lint-recommended"]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"master",
{
"name": "next",
"channel": "channel-next",
"prerelease": "rc"
},
{
"name": "2.x.x",
"range": "2.x.x",
"channel": "2.x.x"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"gradle-semantic-release-plugin",
[
"@semantic-release/exec",
{
"prepareCmd": "bash -c \"rm -rf ./app/build/distributions && ./gradlew assembleDist\""
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "app/build/distributions/*.tar",
"label": "Tar Archive"
},
{
"path": "app/build/distributions/*.zip",
"label": "Zip Archive"
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
"gradle.properties",
"CHANGELOG.md"
]
}
]
]
},
"engines": {
"node": "^12.12.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}