-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "install-release-action",
"version": "1.3.0",
"description": "GitHub action for downloading, extracting, caching an executable from a GitHub release and putting it to PATH.",
"author": "Ferdinand Prantl <[email protected]> (http://prantl.tk)",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/install-release-action/blob/master/LICENSE"
}
],
"homepage": "http://prantlf.github.com/install-release-action/",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/install-release-action.git"
},
"bugs": {
"url": "http://github.com/prantlf/install-release-action/issues"
},
"main": "dist/index.js",
"exports": {
"require": "./dist/index.js"
},
"files": [
"dist",
"action.yml"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rollup -c",
"lint": "biome lint *.js src test",
"check": "node --test",
"coverage": "node --test --experimental-test-coverage",
"test": "biome lint *.js src test && node --test"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@biomejs/biome": "^1.8.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"builtins": "^5.1.0",
"mersenne-twister": "^1.1.0",
"rollup": "^4.20.0",
"semver": "^7.6.3"
},
"keywords": [
"github-actions",
"github",
"actions",
"download",
"tool",
"release"
]
}