-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "semantic-release-gha-output",
"author": {
"name": "Zachary Spar",
"email": "[email protected]"
},
"version": "0.0.0-development",
"type": "module",
"homepage": "https://github.com/zachspar/semantic-release-gha-output",
"repository": "[email protected]:zachspar/semantic-release-gha-output.git",
"bugs": "https://github.com/zachspar/semantic-release-gha-output/issues",
"readme": "README.md",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.1"
},
"description": "A semantic-release plugin to output values from a GitHub Action.",
"main": "index.js",
"peerDependencies": {
"semantic-release": ">=17"
},
"devDependencies": {
"semantic-release": ">=17",
"semantic-release-gha-output": "."
},
"release": {
"repositoryUrl": "https://github.com/zachspar/semantic-release-gha-output.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
}
}