-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.15 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.15 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
{
"name": "uk-controller-plugin",
"version": "2.6.1",
"description": "UK Controller Plugin",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"semantic-release": "25.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VATSIM-UK/uk-controller-plugin.git"
},
"keywords": [
"vatsim",
"vatsim-uk",
"ukcp",
"uk-controller-plugin"
],
"author": "VATSIM-UK",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/VATSIM-UK/uk-controller-plugin/issues"
},
"homepage": "https://github.com/VATSIM-UK/uk-controller-plugin#readme",
"release": {
"repositoryUrl": "https://github.com/VATSIM-UK/uk-controller-plugin",
"branches": [
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/UserGuide/Changelog/Changelog.md",
"changelogTitle": "# UK Controller Plugin Changelog"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "build/bin/UKControllerPluginCore.dll",
"label": "Core Binary"
},
{
"path": "build/bin/UKControllerPluginUpdater.dll",
"label": "Updater Binary"
},
{
"path": "build/bin/UKControllerPlugin.dll",
"label": "Loader Binary"
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
"docs/UserGuide/Changelog/Changelog.md"
]
}
]
]
}
}