mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
69 lines
2.5 KiB
JSON
69 lines
2.5 KiB
JSON
{
|
|
"name": "gradle-actions",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Execute Gradle Build",
|
|
"scripts": {
|
|
"postinstall": "patch-package",
|
|
"prettier-write": "prettier --write 'src/**/*.ts'",
|
|
"prettier-check": "prettier --check 'src/**/*.ts'",
|
|
"lint": "eslint 'src/**/*.ts'",
|
|
"compile-dependency-submission-main": "ncc build src/dependency-submission/main.ts --out dist/dependency-submission/main --source-map --no-source-map-register",
|
|
"compile-dependency-submission-post": "ncc build src/dependency-submission/post.ts --out dist/dependency-submission/post --source-map --no-source-map-register",
|
|
"compile-setup-gradle-main": "ncc build src/setup-gradle/main.ts --out dist/setup-gradle/main --source-map --no-source-map-register",
|
|
"compile-setup-gradle-post": "ncc build src/setup-gradle/post.ts --out dist/setup-gradle/post --source-map --no-source-map-register",
|
|
"compile-wrapper-validation-main": "ncc build src/wrapper-validation/main.ts --out dist/wrapper-validation/main --source-map --no-source-map-register",
|
|
"compile": "npm-run-all --parallel compile-*",
|
|
"check": "npm-run-all --parallel prettier-check lint",
|
|
"format": "npm-run-all --parallel prettier-write lint",
|
|
"test": "jest",
|
|
"build": "npm run format && npm run compile",
|
|
"all": "npm run build && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/gradle/actions.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"github-actions",
|
|
"gradle"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/artifact": "2.1.4",
|
|
"@actions/cache": "3.2.4",
|
|
"@actions/core": "1.10.1",
|
|
"@actions/exec": "1.1.1",
|
|
"@actions/github": "6.0.0",
|
|
"@actions/glob": "0.4.0",
|
|
"@actions/http-client": "2.2.1",
|
|
"@actions/tool-cache": "2.0.1",
|
|
"@octokit/rest": "20.1.0",
|
|
"@octokit/webhooks-types": "7.5.0",
|
|
"semver": "7.6.0",
|
|
"string-argv": "0.3.2",
|
|
"typed-rest-client": "1.8.11",
|
|
"unhomoglyph": "1.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "29.5.12",
|
|
"@types/node": "20.12.4",
|
|
"@types/unzipper": "0.10.9",
|
|
"@typescript-eslint/parser": "7.5.0",
|
|
"@vercel/ncc": "0.38.1",
|
|
"eslint": "8.57.0",
|
|
"eslint-plugin-github": "4.10.2",
|
|
"eslint-plugin-jest": "27.9.0",
|
|
"eslint-plugin-prettier": "5.1.3",
|
|
"jest": "29.7.0",
|
|
"js-yaml": "4.1.0",
|
|
"npm-run-all": "4.1.5",
|
|
"patch-package": "8.0.0",
|
|
"prettier": "3.2.5",
|
|
"ts-jest": "29.1.2",
|
|
"typescript": "5.4.3",
|
|
"nock": "13.5.4"
|
|
}
|
|
}
|