Files
setup-java/package.json
T

57 lines
1.7 KiB
JSON
Raw Normal View History

2019-07-10 10:54:25 -04:00
{
"name": "setup-java",
"version": "3.4.1",
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",
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": {
2025-04-08 18:46:30 +05:30
"@actions/cache": "^4.0.3",
2022-10-06 12:11:13 +01:00
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.4",
"@actions/glob": "^0.2.0",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"semver": "^7.3.4",
"xmlbuilder2": "^2.4.0"
2019-07-10 10:54:25 -04:00
},
"devDependencies": {
2021-10-13 11:22:31 +03:00
"@types/jest": "^27.0.2",
2022-02-24 14:42:37 +03:00
"@types/node": "^16.11.25",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
2022-09-08 15:26:54 +02:00
"@vercel/ncc": "^0.33.4",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
2023-05-23 11:58:12 +02:00
"eslint-plugin-node": "^11.1.0",
2021-10-13 11:22:31 +03:00
"jest": "^27.2.5",
"jest-circus": "^27.2.5",
"prettier": "^2.8.4",
2021-10-13 11:22:31 +03:00
"ts-jest": "^27.0.5",
"typescript": "^4.2.3"
2019-07-10 10:54:25 -04:00
}
}