forked from pozetroninc/github-action-get-latest-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 909 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
{
"name": "github-action-get-latest-release",
"version": "0.7.0",
"description": "A simple action to get the latest release from a Github repo.",
"main": "main.js",
"scripts": {
"lint": "eslint main.js",
"package": "ncc build main.js -o dist",
"build": "ncc build main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozetroninc/github-action-get-latest-release.git"
},
"keywords": [
"actions",
"latest",
"release"
],
"bugs": {
"url": "https://github.com/pozetroninc/github-action-get-latest-release/issues"
},
"homepage": "https://github.com/pozetroninc/github-action-get-latest-release#readme",
"author": "Pozetron Inc",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/rest": "^19.0.5"
}
}