2019-07-30 23:53:06 +07:00
|
|
|
{
|
|
|
|
"name": "setup-dotnet",
|
2019-08-01 20:26:34 +07:00
|
|
|
"version": "1.0.0",
|
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",
|
2019-12-13 21:34:07 +07:00
|
|
|
"test": "jest",
|
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": {
|
2020-01-26 13:37:54 +07:00
|
|
|
"@actions/core": "^1.2.2",
|
|
|
|
"@actions/exec": "^1.0.3",
|
2019-09-10 00:27:23 +07:00
|
|
|
"@actions/github": "^1.1.0",
|
2020-05-16 04:42:54 +07:00
|
|
|
"@actions/http-client": "^1.0.8",
|
2020-01-26 13:37:54 +07:00
|
|
|
"@actions/io": "^1.0.2",
|
|
|
|
"@actions/tool-cache": "^1.3.1",
|
2019-12-13 21:19:15 +07:00
|
|
|
"fast-xml-parser": "^3.15.1",
|
|
|
|
"semver": "^6.3.0",
|
2019-09-10 00:27:23 +07:00
|
|
|
"xmlbuilder": "^13.0.2"
|
2019-07-30 23:53:06 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/jest": "^24.0.13",
|
|
|
|
"@types/node": "^12.0.4",
|
|
|
|
"@types/semver": "^6.0.0",
|
2020-01-26 13:37:54 +07:00
|
|
|
"@zeit/ncc": "^0.21.0",
|
2020-05-16 04:42:54 +07:00
|
|
|
"jest": "^26.0.1",
|
|
|
|
"jest-circus": "^26.0.1",
|
2019-07-30 23:53:06 +07:00
|
|
|
"prettier": "^1.17.1",
|
2020-05-16 04:42:54 +07:00
|
|
|
"ts-jest": "^26.0.0",
|
|
|
|
"typescript": "^3.9.2",
|
2020-01-26 13:37:54 +07:00
|
|
|
"wget-improved": "^3.0.2"
|
2019-07-30 23:53:06 +07:00
|
|
|
}
|
|
|
|
}
|