mirror of
https://gitea.com/docker/metadata-action.git
synced 2024-11-22 03:59:33 +01:00
588ab464f7
Bumps [semver](https://github.com/npm/node-semver) and [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver). These dependencies needed to be updated together. Updates `semver` from 7.5.4 to 7.6.0 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.5.4...v7.6.0) Updates `@types/semver` from 7.5.1 to 7.5.8 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver) --- updated-dependencies: - dependency-name: semver dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: "@types/semver" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "docker-metadata-action",
|
|
"description": "GitHub Action to extract metadata (tags, labels) for Docker",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
"eslint:fix": "eslint --fix .",
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
|
"test": "jest",
|
|
"all": "yarn run build && yarn run format && yarn test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/metadata-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"metadata",
|
|
"tag",
|
|
"label"
|
|
],
|
|
"author": "Docker Inc.",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@docker/actions-toolkit": "^0.20.0",
|
|
"@renovate/pep440": "^1.0.0",
|
|
"csv-parse": "^5.5.5",
|
|
"handlebars": "^4.7.8",
|
|
"moment": "^2.30.1",
|
|
"moment-timezone": "^0.5.45",
|
|
"semver": "^7.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/node": "^20.5.9",
|
|
"@types/semver": "^7.5.8",
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.48.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.6.4",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|