-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 691 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 691 Bytes
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
{
"name": "github-actions-artifacts-redirector-action",
"version": "1.0.0",
"description": "Create a GitHub commit status with a direct link to a GitHub Actions artifact",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"keywords": [
"GitHub",
"Actions",
"artifacts",
"redirect"
],
"author": "Agriya Khetarpal",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"eslint": "^10.0.2",
"jest": "^30.2.0"
}
}