1
0
Files
login-action/package.json
T

56 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",
2024-05-07 10:10:12 +02:00
"main": "src/main.ts",
2020-08-15 14:45:36 +02:00
"scripts": {
2024-05-07 10:10:12 +02:00
"build": "ncc build --source-map --minify --license licenses.txt",
2023-09-07 12:27:06 +02:00
"lint": "yarn run prettier && yarn run eslint",
"format": "yarn run prettier:fix && yarn run eslint:fix",
"eslint": "eslint --max-warnings=0 .",
"eslint:fix": "eslint --fix .",
"prettier": "prettier --check \"./**/*.ts\"",
"prettier:fix": "prettier --write \"./**/*.ts\"",
2024-05-07 10:10:12 +02:00
"test": "jest"
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"
],
2023-09-08 09:13:33 +02:00
"author": "Docker Inc.",
"license": "Apache-2.0",
2025-09-13 13:25:31 +02:00
"packageManager": "yarn@4.9.2",
2020-08-15 14:45:36 +02:00
"dependencies": {
"@actions/core": "^1.11.1",
"@aws-sdk/client-ecr": "^3.978.0",
"@aws-sdk/client-ecr-public": "^3.978.0",
"@docker/actions-toolkit": "^0.76.0",
"http-proxy-agent": "^7.0.2",
2025-09-05 18:43:09 +02:00
"https-proxy-agent": "^7.0.6",
"js-yaml": "^4.1.0"
2020-08-15 14:45:36 +02:00
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
2025-09-05 18:43:09 +02:00
"@types/js-yaml": "^4.0.9",
2026-03-01 11:14:59 +01:00
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.5.0",
2025-09-13 13:19:16 +02:00
"eslint-plugin-prettier": "^5.5.4",
2026-03-01 11:14:59 +01:00
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
2024-05-15 13:53:08 +02:00
"ts-node": "^10.9.2",
2026-03-01 11:14:59 +01:00
"typescript": "^5.9.3"
2020-08-15 14:45:36 +02:00
}
}