mirror of
https://github.com/actions/setup-java.git
synced 2026-08-25 10:03:13 +01:00
Bumps the monthly-npm-updates group with 3 updates: [eslint](https://github.com/eslint/eslint), [globals](https://github.com/sindresorhus/globals) and [typescript](https://github.com/microsoft/TypeScript). Updates `eslint` from 10.8.0 to 10.8.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v10.8.0...v10.8.1) Updates `globals` from 17.9.0 to 17.11.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v17.9.0...v17.11.0) Updates `typescript` from 6.0.3 to 7.0.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v6.0.3...v7.0.2) --- updated-dependencies: - dependency-name: eslint dependency-version: 10.8.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: monthly-npm-updates - dependency-name: globals dependency-version: 17.11.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: monthly-npm-updates - dependency-name: typescript dependency-version: 7.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: monthly-npm-updates ... Signed-off-by: dependabot[bot] <support@github.com>
87 lines
2.6 KiB
JSON
87 lines
2.6 KiB
JSON
{
|
|
"name": "setup-java",
|
|
"version": "6.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"description": "setup java action",
|
|
"main": "dist/setup/index.js",
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "node scripts/patch-is-unsafe.mjs && 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 --write \"**/*.{ts,yml,yaml}\"",
|
|
"format-check": "prettier --no-error-on-unmatched-pattern --check \"**/*.{ts,yml,yaml}\"",
|
|
"lint": "eslint \"**/*.ts\"",
|
|
"lint:fix": "eslint \"**/*.ts\" --fix",
|
|
"check": "npm run format-check && npm run lint && npm run build && npm test",
|
|
"fix": "npm run format && npm run lint:fix && npm run build",
|
|
"prepare": "husky install",
|
|
"prerelease": "npm run-script build",
|
|
"release": "git add -f dist/setup/*.js dist/setup/package.json dist/cleanup/*.js",
|
|
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand --coverage"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --no-error-on-unmatched-pattern --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.{yml,yaml}": [
|
|
"prettier --no-error-on-unmatched-pattern --write"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/setup-java.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"java",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^6.2.0",
|
|
"@actions/core": "^3.0.1",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/glob": "^0.7.0",
|
|
"@actions/http-client": "^4.0.1",
|
|
"@actions/io": "^3.0.2",
|
|
"@actions/tool-cache": "^4.0.0",
|
|
"fast-xml-parser": "^5.11.0",
|
|
"semver": "^7.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@jest/globals": "^30.4.1",
|
|
"@types/node": "^26.2.0",
|
|
"@types/semver": "^7.8.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.67.0",
|
|
"@typescript-eslint/parser": "^8.65.0",
|
|
"@vercel/ncc": "^0.45.0",
|
|
"eslint": "^10.8.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-jest": "^29.16.1",
|
|
"eslint-plugin-n": "^18.3.0",
|
|
"globals": "^17.11.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30.4.2",
|
|
"lint-staged": "^17.3.0",
|
|
"prettier": "^3.9.5",
|
|
"ts-jest": "^29.4.11",
|
|
"typescript": "^7.0.2"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/setup-java/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/setup-java#readme",
|
|
"overrides": {
|
|
"@actions/cache": {
|
|
"@actions/glob": "0.7.0"
|
|
},
|
|
"glob": "^11.1.0",
|
|
"test-exclude": "^7.0.2"
|
|
}
|
|
}
|