-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "@mezmo/opentelemetry-rs",
"description": "A library providing quick-protobuf bindings and RFC compliant validation for OpenTelemetry metrics and logs types",
"license": "Mozilla Public License 2.0",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mezmo/opentelemetry-rs.git"
},
"version": "1.2.1",
"files": [
"README.md"
],
"scripts": {
"commitlint": "./node_modules/.bin/commitlint-logdna",
"release": "semantic-release",
"release:dry": "semantic-release --no-ci --dry-run --branches=${BRANCH_NAME:-main}"
},
"release": {
"branches": [
"main"
],
"extends": [
"@answerbook/release-config-logdna"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/github", {
"assets": "CHANGELOG.md"
}
],
[
"@semantic-release/git", {
"assets": "CHANGELOG.md"
}
]
]
},
"devDependencies": {
"@answerbook/commitlint-config-logdna": "^2.1.0",
"@answerbook/release-config-logdna": "^2.0.1",
"semantic-release": "^19.0.5"
}
}