mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-05 03:35:39 +01:00
4545671ec8
* Bump semver from 7.3.4 to 7.3.5 Bumps [semver](https://github.com/npm/node-semver) from 7.3.4 to 7.3.5. - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.3.4...v7.3.5) Signed-off-by: dependabot[bot] <support@github.com> * Update generated content Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com> Co-authored-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "docker-meta",
|
|
"description": "GitHub Action to extract metadata (tags, labels) for Docker",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"test": "jest --coverage",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"pre-checkin": "yarn run format && yarn run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/crazy-max/ghaction-docker-meta.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"meta",
|
|
"tag",
|
|
"label"
|
|
],
|
|
"author": "CrazyMax",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^4.0.0",
|
|
"csv-parse": "^4.15.3",
|
|
"handlebars": "^4.7.7",
|
|
"moment": "^2.29.1",
|
|
"semver": "^7.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.0",
|
|
"@types/node": "^14.11.2",
|
|
"@vercel/ncc": "^0.24.1",
|
|
"dotenv": "^8.2.0",
|
|
"jest": "^26.0.1",
|
|
"jest-circus": "^26.0.1",
|
|
"jest-runtime": "^26.0.1",
|
|
"prettier": "^2.0.4",
|
|
"ts-jest": "^26.4.1",
|
|
"typescript": "^4.0.3"
|
|
}
|
|
}
|