Files
login-action/package.json

53 lines
1.6 KiB
JSON
Raw Normal View History

2020-08-15 14:45:36 +02:00
{
"name": "docker-login",
"description": "GitHub Action to login against a Docker registry",
"type": "module",
"main": "src/main.ts",
2020-08-15 14:45:36 +02:00
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify --keep-names && yarn run license",
"lint": "eslint --max-warnings=0 .",
"format": "eslint --fix .",
"test": "vitest run",
"license": "generate-license-file --input package.json --output dist/licenses.txt --overwrite --ci --no-spinner --eol lf"
2020-08-15 14:45:36 +02:00
},
"repository": {
"type": "git",
2020-08-21 16:48:16 +02:00
"url": "git+https://github.com/docker/login-action.git"
2020-08-15 14:45:36 +02:00
},
"keywords": [
"actions",
"docker",
"login"
],
"author": "Docker Inc.",
"license": "Apache-2.0",
"packageManager": "yarn@4.15.0",
2020-08-15 14:45:36 +02:00
"dependencies": {
"@actions/core": "^3.0.1",
"@aws-sdk/client-ecr": "^3.1076.0",
"@aws-sdk/client-ecr-public": "^3.1076.0",
"@docker/actions-toolkit": "^0.92.0",
build(deps): bump the proxy-agent-dependencies group across 1 directory with 2 updates Bumps the proxy-agent-dependencies group with 2 updates in the / directory: [http-proxy-agent](https://github.com/TooTallNate/proxy-agents/tree/HEAD/packages/http-proxy-agent) and [https-proxy-agent](https://github.com/TooTallNate/proxy-agents/tree/HEAD/packages/https-proxy-agent). Updates `http-proxy-agent` from 9.0.0 to 9.1.0 - [Release notes](https://github.com/TooTallNate/proxy-agents/releases) - [Changelog](https://github.com/TooTallNate/proxy-agents/blob/main/packages/http-proxy-agent/CHANGELOG.md) - [Commits](https://github.com/TooTallNate/proxy-agents/commits/http-proxy-agent@9.1.0/packages/http-proxy-agent) Updates `https-proxy-agent` from 9.0.0 to 9.1.0 - [Release notes](https://github.com/TooTallNate/proxy-agents/releases) - [Changelog](https://github.com/TooTallNate/proxy-agents/blob/main/packages/https-proxy-agent/CHANGELOG.md) - [Commits](https://github.com/TooTallNate/proxy-agents/commits/https-proxy-agent@9.1.0/packages/https-proxy-agent) --- updated-dependencies: - dependency-name: http-proxy-agent dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: proxy-agent-dependencies - dependency-name: https-proxy-agent dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: proxy-agent-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2026-07-01 15:30:48 +00:00
"http-proxy-agent": "^9.1.0",
"https-proxy-agent": "^9.1.0",
"js-yaml": "^5.2.0"
2020-08-15 14:45:36 +02:00
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.11.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"esbuild": "^0.28.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"generate-license-file": "^4.1.1",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
2020-08-15 14:45:36 +02:00
}
}