2019-07-30 12:53:06 -04:00
|
|
|
{
|
|
|
|
"name": "setup-dotnet",
|
2019-08-01 09:26:34 -04:00
|
|
|
"version": "1.0.0",
|
2019-07-30 12:53:06 -04:00
|
|
|
"private": true,
|
|
|
|
"description": "setup dotnet action",
|
|
|
|
"main": "lib/setup-dotnet.js",
|
|
|
|
"scripts": {
|
2020-01-26 01:37:54 -05:00
|
|
|
"build": "tsc && ncc build",
|
2019-07-30 12:53:06 -04:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
2019-12-13 09:34:07 -05:00
|
|
|
"test": "jest",
|
2019-12-16 07:40:19 -08: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 12:53:06 -04:00
|
|
|
},
|
2020-05-29 20:12:40 -04:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-05-29 20:48:32 -04:00
|
|
|
"//": "Tests are not run at push time since they can take 2-4 minutes to complete",
|
2020-05-29 20:12:40 -04:00
|
|
|
"pre-commit": "npm run format",
|
2020-05-29 20:48:32 -04:00
|
|
|
"pre-push": "npm run format-check"
|
2020-05-29 20:12:40 -04:00
|
|
|
}
|
|
|
|
},
|
2019-07-30 12:53:06 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/setup-dotnet.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"dotnet",
|
|
|
|
"setup"
|
|
|
|
],
|
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-11-23 05:03:56 -05:00
|
|
|
"@actions/core": "^1.6.0",
|
2020-09-21 12:49:32 -07:00
|
|
|
"@actions/exec": "^1.0.4",
|
2019-09-09 10:27:23 -07:00
|
|
|
"@actions/github": "^1.1.0",
|
2020-05-15 14:42:54 -07:00
|
|
|
"@actions/http-client": "^1.0.8",
|
2020-01-26 01:37:54 -05:00
|
|
|
"@actions/io": "^1.0.2",
|
2019-12-13 09:19:15 -05:00
|
|
|
"fast-xml-parser": "^3.15.1",
|
|
|
|
"semver": "^6.3.0",
|
2019-09-09 10:27:23 -07:00
|
|
|
"xmlbuilder": "^13.0.2"
|
2019-07-30 12:53:06 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-13 16:35:23 +03:00
|
|
|
"@types/jest": "^27.0.2",
|
2020-09-21 12:49:32 -07:00
|
|
|
"@types/node": "^12.12.62",
|
|
|
|
"@types/semver": "^6.2.2",
|
|
|
|
"@zeit/ncc": "^0.21.1",
|
2021-10-13 14:50:32 +03:00
|
|
|
"husky": "^7.0.2",
|
2021-10-13 16:35:23 +03:00
|
|
|
"jest": "^27.2.5",
|
|
|
|
"jest-circus": "^27.2.5",
|
2020-09-21 12:49:32 -07:00
|
|
|
"prettier": "^1.19.1",
|
2021-10-13 16:35:23 +03:00
|
|
|
"ts-jest": "^27.0.5",
|
2020-09-21 12:49:32 -07:00
|
|
|
"typescript": "^3.9.7",
|
2020-08-28 12:01:22 -07:00
|
|
|
"wget-improved": "^3.2.1"
|
2020-09-15 09:36:09 -07:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node"
|
2019-07-30 12:53:06 -04:00
|
|
|
}
|
|
|
|
}
|