-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 942 Bytes
/
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
{
"name": "learning-semantic-release",
"version": "0.0.0-development",
"description": "A small project to learn how semantic release works",
"main": "index.js",
"repository": "https://github.com/odonatojunior/learning-semantic-release",
"author": "Donato Jr. <[email protected]>",
"license": "MIT",
"type": "module",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"repositoryUrl": "https://github.com/odonatojunior/learning-semantic-release",
"publish": [
"@semantic-release/github"
]
},
"scripts": {
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "restricted"
},
"devDependencies": {
"@semantic-release/github": "^8.0.7",
"semantic-release": "^20.0.2"
}
}