Permalink
Cannot retrieve contributors at this time
54 lines (54 sloc)
1.45 KB
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "docker-login", | |
"description": "GitHub Action to login against a Docker registry", | |
"main": "lib/main.js", | |
"scripts": { | |
"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", | |
"test": "jest --coverage", | |
"all": "yarn run build && yarn run format && yarn test" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/docker/login-action.git" | |
}, | |
"keywords": [ | |
"actions", | |
"docker", | |
"login" | |
], | |
"author": "Docker", | |
"contributors": [ | |
{ | |
"name": "CrazyMax", | |
"url": "https://crazymax.dev" | |
} | |
], | |
"license": "MIT", | |
"dependencies": { | |
"@actions/core": "^1.9.1", | |
"@actions/exec": "^1.1.1", | |
"@actions/io": "^1.1.2", | |
"@aws-sdk/client-ecr": "^3.53.0", | |
"@aws-sdk/client-ecr-public": "^3.53.0", | |
"http-proxy-agent": "^5.0.0", | |
"https-proxy-agent": "^5.0.1" | |
}, | |
"devDependencies": { | |
"@types/node": "^16.11.26", | |
"@typescript-eslint/eslint-plugin": "^5.14.0", | |
"@typescript-eslint/parser": "^5.14.0", | |
"@vercel/ncc": "^0.33.3", | |
"dotenv": "^16.0.0", | |
"eslint": "^8.11.0", | |
"eslint-config-prettier": "^8.5.0", | |
"eslint-plugin-jest": "^26.1.1", | |
"eslint-plugin-prettier": "^4.0.0", | |
"jest": "^27.2.5", | |
"prettier": "^2.3.1", | |
"ts-jest": "^27.1.2", | |
"ts-node": "^10.7.0", | |
"typescript": "^4.4.4" | |
} | |
} |