Files
setup-java/package.json
T

64 lines
1.9 KiB
JSON
Raw Normal View History

2019-07-10 10:54:25 -04:00
{
"name": "setup-java",
"version": "5.2.0",
2019-07-10 10:54:25 -04:00
"private": true,
"description": "setup java action",
2020-08-24 14:19:47 +02:00
"main": "dist/setup/index.js",
2025-09-09 10:02:46 -05:00
"engines": {
2025-08-20 20:07:47 +01:00
"node": ">=24.0.0"
},
2019-07-10 10:54:25 -04:00
"scripts": {
2020-05-02 04:33:15 -07:00
"build": "ncc build -o dist/setup src/setup-java.ts && ncc build -o dist/cleanup src/cleanup-java.ts",
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix",
2019-12-19 08:52:26 -08:00
"prerelease": "npm run-script build",
2020-05-02 04:33:15 -07:00
"release": "git add -f dist/setup/index.js dist/cleanup/index.js",
2019-07-10 10:54:25 -04:00
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/setup-java.git"
},
"keywords": [
"actions",
"java",
2019-07-10 10:54:25 -04:00
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
2026-01-20 15:24:36 +00:00
"@actions/cache": "^5.0.1",
2022-10-06 12:11:13 +01:00
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.4",
"@actions/glob": "^0.5.0",
2026-03-02 21:51:19 +00:00
"@actions/http-client": "^4.0.0",
"@actions/io": "^1.0.2",
2023-11-29 19:41:46 +05:30
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.0",
"xmlbuilder2": "^2.4.0"
2019-07-10 10:54:25 -04:00
},
"devDependencies": {
"@types/jest": "^29.5.14",
2025-08-20 20:07:47 +01:00
"@types/node": "^24.1.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
2023-11-29 19:41:46 +05:30
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^29.0.1",
2023-05-23 11:58:12 +02:00
"eslint-plugin-node": "^11.1.0",
2023-11-29 19:41:46 +05:30
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
2025-09-09 10:02:46 -05:00
"prettier": "^3.6.2",
2025-04-08 09:19:01 -05:00
"ts-jest": "^29.3.0",
"typescript": "^5.3.3"
2023-11-29 19:41:46 +05:30
},
"bugs": {
"url": "https://github.com/actions/setup-java/issues"
},
"homepage": "https://github.com/actions/setup-java#readme"
2026-01-20 15:24:36 +00:00
}