-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.23 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
{
"bugs": "https://github.com/cedx/setup-hashlink/issues",
"description": "Set up your GitHub Actions workflow with a specific version of the HashLink VM.",
"homepage": "https://github.com/cedx/setup-hashlink",
"license": "MIT",
"name": "@cedx/setup-hashlink",
"private": true,
"repository": "cedx/setup-hashlink",
"type": "module",
"version": "6.0.0",
"author": {
"email": "cedric@belin.io",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"bin": {
"setup_hashlink": "bin/setup_hashlink.js"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@coffeelint/cli": "^5.2.11",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/gulp": "^4.0.17",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"coffeescript": "^2.7.0",
"gulp": "^5.0.0",
"rollup": "^4.26.0"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"action",
"ci",
"github",
"hashlink",
"test",
"vm",
"workflow"
],
"scripts": {
"test": "gulp test"
}
}