2019-07-30 23:53:06 +07:00
|
|
|
{
|
|
|
|
"name": "setup-dotnet",
|
2022-10-10 19:27:29 +07:00
|
|
|
"version": "3.0.2",
|
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": {
|
2023-05-29 17:43:18 +07:00
|
|
|
"@actions/cache": "^3.0.0",
|
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",
|
2019-09-10 00:27:23 +07:00
|
|
|
"@actions/github": "^1.1.0",
|
2023-05-29 17:43:18 +07:00
|
|
|
"@actions/glob": "^0.3.0",
|
2022-09-27 19:47:12 +07:00
|
|
|
"@actions/http-client": "^2.0.1",
|
2020-01-26 13:37:54 +07:00
|
|
|
"@actions/io": "^1.0.2",
|
2023-06-23 14:47:16 +07:00
|
|
|
"fast-xml-parser": "^4.2.4",
|
2023-05-30 22:11:19 +07:00
|
|
|
"json5": "^2.2.3",
|
2023-07-18 20:41:43 +07:00
|
|
|
"semver": "^6.3.1"
|
2019-07-30 23:53:06 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-09 20:23:21 +07:00
|
|
|
"@types/jest": "^28.1.3",
|
2022-02-24 15:16:01 +07:00
|
|
|
"@types/node": "^16.11.25",
|
2020-09-22 02:49:32 +07:00
|
|
|
"@types/semver": "^6.2.2",
|
2023-03-09 19:43:05 +07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
2023-05-29 17:43:18 +07:00
|
|
|
"@vercel/ncc": "^0.34.0",
|
2023-03-09 19:43:05 +07:00
|
|
|
"eslint": "^8.35.0",
|
|
|
|
"eslint-config-prettier": "^8.6.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
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-11-09 20:23:21 +07:00
|
|
|
"jest": "^28.1.3",
|
|
|
|
"jest-circus": "^28.1.3",
|
|
|
|
"jest-each": "^28.1.3",
|
2023-03-09 19:43:05 +07:00
|
|
|
"prettier": "^2.8.4",
|
2023-11-09 20:23:21 +07:00
|
|
|
"ts-jest": "^28.0.8",
|
2022-10-10 19:27:29 +07:00
|
|
|
"typescript": "^4.8.4",
|
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
|
|
|
}
|
|
|
|
}
|