-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 2.99 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "osm-legal-speed",
"version": "1.0.0",
"description": "OSM Legal Speed is a Java SDK which help determine the legal max speed for most of the countries of the world, with respect to regional legal restrictions, based on OSM tags.",
"main": "index.js",
"scripts": {
"test": "mvn test",
"build": "GH_TOKEN=\"${OSM_GH_TOKEN}\" CI=true semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/chargetrip/osm-legal-speed.git"
},
"keywords": [
"osm",
"speed"
],
"author": "Chargetrip <dev@chargetrip.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/chargetrip/osm-legal-speed/issues"
},
"homepage": "https://github.com/chargetrip/osm-legal-speed#readme",
"release": {
"branches": [
{
"name": "rc",
"prerelease": true
},
{
"name": "main",
"prerelease": false
}
],
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "*",
"scope": "*",
"release": false
},
{
"breaking": true,
"release": "major"
},
{
"type": "docs",
"scope": "*",
"release": false
},
{
"type": "feat",
"scope": "*",
"release": "minor"
},
{
"type": "fix",
"scope": "*",
"release": "patch"
},
{
"type": "perf",
"scope": "*",
"release": "patch"
},
{
"type": "refactor",
"scope": "*",
"release": false
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "./scripts/version.js ${nextRelease.version}"
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"pom.xml",
"CHANGELOG.md"
],
"message": "chore: Release ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/release-notes-generator": "10.0.3",
"semantic-release": "19.0.5",
"semantic-release-cli": "5.4.4"
}
}