mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-01-18 19:26:39 +08:00
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "setup-graalvm",
|
|
"version": "1.1.4",
|
|
"private": true,
|
|
"description": "GitHub Action for GraalVM",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build -o dist/main src/main.ts && ncc build -o dist/cleanup src/cleanup.ts",
|
|
"test": "jest",
|
|
"all-but-test": "npm run build && npm run format && npm run lint && npm run package",
|
|
"all": "npm run all-but-test && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/graalvm/setup-graalvm.git"
|
|
},
|
|
"keywords": [
|
|
"graalvm",
|
|
"native image",
|
|
"actions",
|
|
"setup"
|
|
],
|
|
"author": "GraalVM Community",
|
|
"license": "UPL",
|
|
"dependencies": {
|
|
"@actions/cache": "^3.0.4",
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/github": "^5.1.1",
|
|
"@actions/glob": "^0.3.0",
|
|
"@actions/http-client": "^1.0.11",
|
|
"@actions/io": "^1.1.1",
|
|
"@actions/tool-cache": "^1.7.1",
|
|
"@octokit/core": "^3.5.1",
|
|
"@octokit/types": "^6.34.0",
|
|
"semver": "^7.5.2",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.5.2",
|
|
"@types/node": "^18.15.11",
|
|
"@types/semver": "^7.3.13",
|
|
"@types/uuid": "^8.3.4",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"@vercel/ncc": "^0.33.4",
|
|
"eslint": "^8.6.0",
|
|
"eslint-plugin-github": "^4.3.5",
|
|
"eslint-plugin-jest": "^25.3.4",
|
|
"jest": "^29.5.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.5.1",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|