login-action/package.json

53 lines
1.4 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",
"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",
2020-08-21 14:45:16 +02:00
"test": "jest --coverage",
"all": "yarn run build && yarn run format && yarn test"
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"
],
2020-08-21 16:48:16 +02:00
"author": "Docker",
"contributors": [
{
"name": "CrazyMax",
"url": "https://crazymax.dev"
}
],
2020-08-15 15:07:59 +02:00
"license": "MIT",
2020-08-15 14:45:36 +02:00
"dependencies": {
"@actions/core": "^1.10.0",
"@aws-sdk/client-ecr": "^3.398.0",
"@aws-sdk/client-ecr-public": "^3.398.0",
"@docker/actions-toolkit": "^0.7.1",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.1"
2020-08-15 14:45:36 +02:00
},
"devDependencies": {
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
2020-08-15 14:45:36 +02:00
}
}