-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.12 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
{
"bugs": "https://github.com/cedx/setup-ant/issues",
"description": "Set up your GitHub Actions workflow with a specific version of Apache Ant.",
"homepage": "https://github.com/cedx/setup-ant",
"license": "MIT",
"name": "@cedx/setup-ant",
"private": true,
"repository": "cedx/setup-ant",
"type": "module",
"version": "4.2.0",
"author": {
"email": "[email protected]",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"bin": {
"setup_ant": "bin/setup_ant.cjs"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.2",
"semver": "^7.7.0"
},
"devDependencies": {
"@types/eslint__js": "^8.42.3",
"@types/gulp": "^4.0.17",
"@types/node": "^22.12.0",
"@types/semver": "^7.5.8",
"esbuild": "^0.24.2",
"gulp": "^5.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"action",
"ant",
"ci",
"github",
"ivy",
"java",
"test",
"workflow"
],
"scripts": {
"test": "gulp test"
}
}