-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "github-organization-repository-auditing-action",
"version": "1.0.0",
"private": true,
"description": "A simple GitHub Action written in JavaScript",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js -o dist"
},
"repository": "github:gr2m/github-organization-repository-auditing-action",
"keywords": [
"github-action"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.7",
"dotenv": "^8.2.0",
"octokit": "^1.0.3"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@vercel/ncc": "^0.28.3",
"semantic-release": "^17.4.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
}
}