-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "github-test-repo",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/PharmGKB/github-test-repo.git"
},
"license": "MPL-2.0",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"conventional-changelog-conventionalcommits": "^4.5.0",
"semantic-release": "^17.4.2"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"writerOpts": {
"commitsGroupSort": [
"feat",
"perf",
"fix"
],
"commitsSort": "header"
}
}
],
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"ci": false
},
"scripts": {
"release": "semantic-release"
}
}