-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "sector-file-compiler",
"description": "Sector File Compiler for the VATSIM UK Sector File",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VATSIM-UK/sector-file-compiler.git"
},
"keywords": [
"vatsim",
"VATSIM-UK",
"sector",
"sectorfile",
"euroscope"
],
"author": "VATSIM-UK",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/VATSIM-UK/sector-file-compiler/issues"
},
"homepage": "https://github.com/VATSIM-UK/sector-file-compiler#sector-file-compiler",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"repositoryUrl": "https://github.com/VATSIM-UK/sector-file-compiler",
"branches": [
"main"
],
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "publish/windows/CompilerCli.exe",
"label": "cli-windows-x64",
"name": "cli-windows-x64"
},
{
"path": "publish/linux/CompilerCli",
"label": "cli-linux-x64",
"name": "cli-linux-x64"
},
{
"path": "publish/osx/CompilerCli",
"label": "cli-mac-x64",
"name": "cli-mac-x64"
}
]
}
]
]
}
}