-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.86 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
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
{
"name": "vcf-parser",
"version": "0.3.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/PharmGKB/vcf-parser.git"
},
"license": "MPL-2.0",
"packageManager": "[email protected]",
"devDependencies": {
"@google/semantic-release-replace-plugin": "^1.1.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"semantic-release": "^19.0.5"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@google/semantic-release-replace-plugin",
{
"replacements": [
{
"files": [
"README.md"
],
"from": " <version>.*</version>",
"to": " <version>${nextRelease.version}</version>",
"results": [
{
"file": "README.md",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}
],
[
"@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",
{
"assets": [
"CHANGELOG.md",
"package.json",
"README.md"
]
}
]
],
"ci": false
},
"scripts": {
"release": "semantic-release"
}
}