-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
{
"name": "setup-groovy",
"version": "1.0.0",
"private": true,
"description": "Sets up Groovy for Github Actions",
"main": "lib/src/main.js",
"type": "module",
"scripts": {
"build": "tsc",
"format": "npx biome format --write",
"format-check": "npx biome format",
"lint": "npx biome lint --write",
"format+lint": "npx biome check --write",
"package": "ncc build --source-map --license licenses.txt",
"test": "vitest",
"coverage": "vitest run --coverage",
"update-dist": "npm run build && npm run package",
"all": "npm run build && npm run format+lint && npm run package && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WtfJoke/setup-groovy"
},
"keywords": [
"actions",
"groovy",
"setup",
"apache"
],
"author": "WtfJoke",
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0",
"@actions/http-client": "4.0.0",
"@actions/io": "3.0.2",
"@actions/tool-cache": "4.0.0",
"fast-xml-parser": "5.5.9",
"semver": "7.7.4"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@octokit/types": "16.0.0",
"@types/node": "24.12.0",
"@types/semver": "7.7.1",
"@vercel/ncc": "0.38.4",
"@vitest/coverage-v8": "4.1.1",
"js-yaml": "4.1.1",
"typescript": "6.0.2",
"vitest": "4.1.1",
"webpack": "5.105.4"
}
}