mirror of
https://github.com/azure/login.git
synced 2026-06-06 10:47:05 +00:00
Removes [jsdom](https://github.com/jsdom/jsdom). It's no longer used after updating ancestor dependencies [jsdom](https://github.com/jsdom/jsdom), [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) and [jest-circus](https://github.com/facebook/jest/tree/HEAD/packages/jest-circus). These dependencies need to be updated together. Removes `jsdom` Updates `jest` from 25.5.4 to 29.2.2 - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v29.2.2/packages/jest) Updates `jest-circus` from 25.5.4 to 29.2.2 - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v29.2.2/packages/jest-circus) --- updated-dependencies: - dependency-name: jsdom dependency-type: indirect - dependency-name: jest dependency-type: direct:development - dependency-name: jest-circus dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
655 B
JSON
27 lines
655 B
JSON
{
|
|
"name": "login",
|
|
"version": "1.0.0",
|
|
"description": "Login Azure wraps the az login, allowing for Azure actions to log into Azure",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest"
|
|
},
|
|
"author": "Sumiran Aggarwal",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^25.1.4",
|
|
"@types/node": "^12.7.11",
|
|
"jest": "^29.2.2",
|
|
"jest-circus": "^29.2.2",
|
|
"ts-jest": "^25.3.0",
|
|
"typescript": "^3.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.9.1",
|
|
"@actions/exec": "^1.0.1",
|
|
"@actions/io": "^1.0.1",
|
|
"actions-secret-parser": "^1.0.2",
|
|
"package-lock": "^1.0.3"
|
|
}
|
|
}
|