-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "app-stats-action",
"private": true,
"version": "1.0.0",
"description": "GitHub Action to retrieve statistics for a GitHub App",
"main": "index.js",
"scripts": {
"build": "ncc build index.js -o dist"
},
"keywords": [
"action"
],
"repository": "github:gr2m/app-stats-action",
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/auth-app": "^6.0.0",
"@octokit/core": "^5.0.0",
"@octokit/plugin-paginate-rest": "^7.1.2",
"@octokit/plugin-retry": "^5.0.5",
"@octokit/plugin-throttling": "^7.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1"
},
"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"
]
}
}