2019-07-30 23:53:06 +07:00
|
|
|
{
|
|
|
|
"name": "setup-dotnet",
|
2023-12-04 21:17:27 +07:00
|
|
|
"version": "4.0.0",
|
2019-07-30 23:53:06 +07:00
|
|
|
"private": true,
|
|
|
|
"description": "setup dotnet action",
|
2023-05-29 17:43:18 +07:00
|
|
|
"main": "dist/setup/index.js",
|
2019-07-30 23:53:06 +07:00
|
|
|
"scripts": {
|
2023-05-29 17:43:18 +07:00
|
|
|
"build": "ncc build -o dist/setup src/setup-dotnet.ts && ncc build -o dist/cache-save src/cache-save.ts",
|
2023-04-03 17:48:02 +07:00
|
|
|
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
|
|
|
|
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
|
|
|
|
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
|
|
|
|
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix",
|
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": {
|
2024-03-22 03:05:16 +07:00
|
|
|
"@actions/cache": "^3.2.4",
|
2022-10-06 18:05:06 +07:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-05-29 17:43:18 +07:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-12-04 21:17:27 +07:00
|
|
|
"@actions/github": "^6.0.0",
|
|
|
|
"@actions/glob": "^0.4.0",
|
2024-03-22 03:05:16 +07:00
|
|
|
"@actions/http-client": "^2.2.1",
|
2020-01-26 13:37:54 +07:00
|
|
|
"@actions/io": "^1.0.2",
|
2024-03-22 03:05:16 +07:00
|
|
|
"fast-xml-parser": "^4.3.6",
|
2023-05-30 22:11:19 +07:00
|
|
|
"json5": "^2.2.3",
|
2024-03-22 03:05:16 +07:00
|
|
|
"semver": "^7.6.0"
|
2019-07-30 23:53:06 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-03-22 03:05:16 +07:00
|
|
|
"@types/jest": "^29.5.12",
|
|
|
|
"@types/node": "^20.11.29",
|
|
|
|
"@types/semver": "^7.5.8",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^7.3.0",
|
|
|
|
"@typescript-eslint/parser": "^7.3.0",
|
2023-12-04 21:17:27 +07:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2024-03-22 03:05:16 +07:00
|
|
|
"eslint": "^8.57.0",
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2023-05-25 18:38:43 +07:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2022-07-25 09:58:35 +07:00
|
|
|
"husky": "^8.0.1",
|
2023-12-04 21:17:27 +07:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-circus": "^29.7.0",
|
|
|
|
"jest-each": "^29.7.0",
|
2024-03-22 03:05:16 +07:00
|
|
|
"prettier": "^3.2.5",
|
|
|
|
"ts-jest": "^29.1.2",
|
|
|
|
"typescript": "^5.4.2",
|
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
|
|
|
}
|
|
|
|
}
|