mirror of
https://github.com/julia-actions/setup-julia.git
synced 2026-02-12 11:06:53 +08:00
* Use `fs.rmSync` instead of `fs.rmdirSync`. To get rid of the deprecation warning. #119 * Update dependencies.
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "setup-julia",
|
|
"version": "1.9.2",
|
|
"private": true,
|
|
"description": "setup Julia action",
|
|
"main": "lib/setup-julia.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"pack": "ncc build",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/julia-actions/setup-julia.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"julia",
|
|
"setup"
|
|
],
|
|
"author": "Sascha Mann <git@mail.saschamann.eu>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"async-retry": "^1.3.3",
|
|
"semver": "^7.3.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async-retry": "^1.4.5",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/node": "^16.18.12",
|
|
"@types/retry": "^0.12.2",
|
|
"@types/semver": "^7.3.13",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"jest": "^29.4.2",
|
|
"jest-circus": "^29.4.2",
|
|
"nock": "^13.3.0",
|
|
"prettier": "^2.8.4",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|