-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 873 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
{
"name": "last-artifact-action",
"private": true,
"version": "2.1.0",
"description": "GitHub Action to download and read the last artifact uploaded on some GitHub repository.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micalevisk/last-artifact-action.git"
},
"keywords": [
"github-action"
],
"author": "Micael Levi <[email protected]> (https://micalevisk.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/micalevisk/last-artifact-action/issues"
},
"homepage": "https://github.com/micalevisk/last-artifact-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/action": "^6.0.7",
"adm-zip": "^0.5.10"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}