Files
setup-java/package.json
T

48 lines
1.3 KiB
JSON
Raw Normal View History

2019-07-10 10:54:25 -04:00
{
"name": "setup-java",
2022-04-11 13:25:41 +00:00
"version": "3.1.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 --write \"{,!(node_modules)/**/}*.ts\"",
"format-check": "prettier --check \"{,!(node_modules)/**/}*.ts\"",
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": {
2022-06-24 15:32:10 +02:00
"@actions/cache": "^3.0.0",
"@actions/core": "^1.2.6",
"@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",
2021-10-13 11:22:31 +03:00
"jest": "^27.2.5",
"jest-circus": "^27.2.5",
"@vercel/ncc": "^0.33.4",
2019-11-25 10:12:17 -05:00
"prettier": "^1.19.1",
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
}
2022-06-24 15:32:10 +02:00
}