setup-dotnet/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

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