{ "name": "setup-dotnet", "version": "1.0.0", "private": true, "description": "setup dotnet action", "main": "lib/setup-dotnet.js", "scripts": { "build": "tsc && ncc build", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "test": "jest", "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" }, "husky": { "hooks": { "//": "Tests are not run at push time since they can take 2-4 minutes to complete", "pre-commit": "npm run format", "pre-push": "npm run format-check" } }, "repository": { "type": "git", "url": "git+https://github.com/actions/setup-dotnet.git" }, "keywords": [ "actions", "dotnet", "setup" ], "author": "GitHub", "license": "MIT", "dependencies": { "@actions/core": "^1.2.2", "@actions/exec": "^1.0.3", "@actions/github": "^1.1.0", "@actions/http-client": "^1.0.8", "@actions/io": "^1.0.2", "fast-xml-parser": "^3.15.1", "semver": "^6.3.0", "xmlbuilder": "^13.0.2" }, "devDependencies": { "@types/jest": "^25.2.3", "@types/node": "^12.12.42", "@types/semver": "^6.0.0", "@zeit/ncc": "^0.21.0", "husky": "^4.2.5", "jest": "^26.0.1", "jest-circus": "^26.0.1", "prettier": "^1.17.1", "ts-jest": "^26.0.0", "typescript": "^3.9.3", "wget-improved": "^3.2.1" }, "jest": { "testEnvironment": "node" } }