2020-08-15 20:45:36 +08:00
|
|
|
{
|
|
|
|
"name": "docker-login",
|
|
|
|
"description": "GitHub Action to login against a Docker registry",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
2022-03-21 17:57:36 +08:00
|
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
|
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
2020-08-21 20:45:16 +08:00
|
|
|
"test": "jest --coverage",
|
2022-03-21 17:57:36 +08:00
|
|
|
"all": "yarn run build && yarn run format && yarn test"
|
2020-08-15 20:45:36 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-08-21 22:48:16 +08:00
|
|
|
"url": "git+https://github.com/docker/login-action.git"
|
2020-08-15 20:45:36 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
|
|
|
"login"
|
|
|
|
],
|
2020-08-21 22:48:16 +08:00
|
|
|
"author": "Docker",
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "CrazyMax",
|
|
|
|
"url": "https://crazymax.dev"
|
|
|
|
}
|
|
|
|
],
|
2020-08-15 21:07:59 +08:00
|
|
|
"license": "MIT",
|
2020-08-15 20:45:36 +08:00
|
|
|
"dependencies": {
|
2022-08-09 13:15:53 +08:00
|
|
|
"@actions/core": "^1.9.1",
|
2022-03-18 13:14:07 +08:00
|
|
|
"@actions/exec": "^1.1.1",
|
2022-03-21 16:15:07 +08:00
|
|
|
"@actions/io": "^1.1.2",
|
2022-02-28 15:45:26 +08:00
|
|
|
"@aws-sdk/client-ecr": "^3.53.0",
|
2022-02-28 15:53:18 +08:00
|
|
|
"@aws-sdk/client-ecr-public": "^3.53.0",
|
2022-02-28 15:28:55 +08:00
|
|
|
"http-proxy-agent": "^5.0.0",
|
2022-04-15 13:15:24 +08:00
|
|
|
"https-proxy-agent": "^5.0.1"
|
2020-08-15 20:45:36 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-28 15:28:55 +08:00
|
|
|
"@types/node": "^16.11.26",
|
2022-03-21 17:57:36 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
|
|
"@typescript-eslint/parser": "^5.14.0",
|
2022-02-28 15:28:55 +08:00
|
|
|
"@vercel/ncc": "^0.33.3",
|
|
|
|
"dotenv": "^16.0.0",
|
2022-03-21 17:57:36 +08:00
|
|
|
"eslint": "^8.11.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-28 15:28:55 +08:00
|
|
|
"jest": "^27.2.5",
|
2022-03-21 17:57:36 +08:00
|
|
|
"prettier": "^2.3.1",
|
2022-02-28 15:28:55 +08:00
|
|
|
"ts-jest": "^27.1.2",
|
2022-03-21 17:57:36 +08:00
|
|
|
"ts-node": "^10.7.0",
|
2022-02-28 15:28:55 +08:00
|
|
|
"typescript": "^4.4.4"
|
2020-08-15 20:45:36 +08:00
|
|
|
}
|
|
|
|
}
|