1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-04-27 09:06:36 +02:00

update to node 16

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-02-28 08:28:55 +01:00
parent 6af3c118c8
commit 4b59a429db
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
17 changed files with 2541 additions and 56040 deletions

View file

@ -4,8 +4,8 @@
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "jest --coverage",
"pre-checkin": "yarn run format && yarn run build"
},
@ -13,6 +13,9 @@
"type": "git",
"url": "git+https://github.com/docker/login-action.git"
},
"engines": {
"node": "^16"
},
"keywords": [
"actions",
"docker",
@ -32,19 +35,16 @@
"@actions/io": "^1.1.1",
"@aws-sdk/client-ecr": "^3.45.0",
"@aws-sdk/client-ecr-public": "^3.45.0",
"proxy-agent": "^5.0.0"
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.17.4",
"@vercel/ncc": "^0.28.6",
"dotenv": "^8.6.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-runtime": "^26.6.3",
"prettier": "^2.3.2",
"ts-jest": "^26.5.6",
"typescript": "^3.9.10",
"typescript-formatter": "^7.2.2"
"@types/node": "^16.11.26",
"@vercel/ncc": "^0.33.3",
"dotenv": "^16.0.0",
"jest": "^27.2.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
}
}