2019-07-30 23:53:06 +07:00
|
|
|
{
|
|
|
|
"name": "setup-dotnet",
|
2022-10-10 19:27:29 +07:00
|
|
|
"version": "3.0.2",
|
2019-07-30 23:53:06 +07:00
|
|
|
"private": true,
|
|
|
|
"description": "setup dotnet action",
|
|
|
|
"main": "lib/setup-dotnet.js",
|
|
|
|
"scripts": {
|
2020-01-26 13:37:54 +07:00
|
|
|
"build": "tsc && ncc build",
|
2019-07-30 23:53:06 +07:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2022-12-20 22:24:40 +07:00
|
|
|
"lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
|
2022-07-25 09:58:35 +07:00
|
|
|
"prepare": "husky install",
|
2022-09-27 19:47:12 +07:00
|
|
|
"test": "jest --coverage --config ./jest.config.js",
|
2019-12-16 22:40:19 +07:00
|
|
|
"update-installers": "nwget https://dot.net/v1/dotnet-install.ps1 -O externals/install-dotnet.ps1 && nwget https://dot.net/v1/dotnet-install.sh -O externals/install-dotnet.sh"
|
2019-07-30 23:53:06 +07:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/setup-dotnet.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"dotnet",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2022-10-06 18:05:06 +07:00
|
|
|
"@actions/core": "^1.10.0",
|
2020-09-22 02:49:32 +07:00
|
|
|
"@actions/exec": "^1.0.4",
|
2019-09-10 00:27:23 +07:00
|
|
|
"@actions/github": "^1.1.0",
|
2022-09-27 19:47:12 +07:00
|
|
|
"@actions/http-client": "^2.0.1",
|
2020-01-26 13:37:54 +07:00
|
|
|
"@actions/io": "^1.0.2",
|
2022-09-29 23:23:42 +07:00
|
|
|
"fast-xml-parser": "^4.0.10",
|
2022-09-30 06:54:05 +07:00
|
|
|
"semver": "^6.3.0"
|
2019-07-30 23:53:06 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-13 20:35:23 +07:00
|
|
|
"@types/jest": "^27.0.2",
|
2022-02-24 15:16:01 +07:00
|
|
|
"@types/node": "^16.11.25",
|
2020-09-22 02:49:32 +07:00
|
|
|
"@types/semver": "^6.2.2",
|
2022-04-28 16:37:53 +07:00
|
|
|
"@vercel/ncc": "^0.33.4",
|
2022-07-25 09:58:35 +07:00
|
|
|
"husky": "^8.0.1",
|
2021-10-13 20:35:23 +07:00
|
|
|
"jest": "^27.2.5",
|
|
|
|
"jest-circus": "^27.2.5",
|
2022-10-10 19:27:29 +07:00
|
|
|
"prettier": "^2.7.1",
|
2021-10-13 20:35:23 +07:00
|
|
|
"ts-jest": "^27.0.5",
|
2022-10-10 19:27:29 +07:00
|
|
|
"typescript": "^4.8.4",
|
2020-08-29 02:01:22 +07:00
|
|
|
"wget-improved": "^3.2.1"
|
2020-09-15 23:36:09 +07:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node"
|
2019-07-30 23:53:06 +07:00
|
|
|
}
|
|
|
|
}
|