-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.95 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
{
"name": "atala-prism-wallet-sdk-swift",
"version": "4.0.0",
"description": "atala-prism-wallet-sdk-swift",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/atala-prism-wallet-sdk-swift.git"
},
"author": "IOG",
"license": "ISC",
"bugs": {
"url": "https://github.com/input-output-hk/atala-prism-wallet-sdk-swift/issues"
},
"homepage": "https://github.com/input-output-hk/atala-prism-wallet-sdk-swift#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^19.0.5",
"semantic-release-slack-bot": "^3.5.3"
},
"release": {
"branches": [
{
"name": "release/*"
}
],
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "npm version ${nextRelease.version} --git-tag-version false"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"message": "chore(release): cut edge agent sdk swift ${nextRelease.version} release\n\n${nextRelease.notes}"
}
],
[
"semantic-release-slack-bot",
{
"notifyOnSuccess": true,
"notifyOnFail": true,
"markdownReleaseNotes": true,
"onSuccessTemplate": {
"text": "A new version of Edge Agent SDK Swift successfully released!\nVersion: `$npm_package_version`\nTag: $repo_url/releases/tag/$npm_package_version\n\nRelease notes:\n$release_notes"
}
}
]
]
}
}