-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
91 lines (91 loc) · 2.27 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "uk-controller-plugin",
"version": "2.6.1",
"description": "UK Controller Plugin",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VATSIM-UK/uk-controller-plugin.git"
},
"scripts": {
"commit": "cz"
},
"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",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"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"
]
}
]
]
}
}