mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-08 21:25:40 +01:00
0e44559303
Bumps [csv-parse](https://github.com/adaltas/node-csv/tree/HEAD/packages/csv-parse) from 5.3.6 to 5.3.8. - [Release notes](https://github.com/adaltas/node-csv/releases) - [Changelog](https://github.com/adaltas/node-csv/blob/master/packages/csv-parse/CHANGELOG.md) - [Commits](https://github.com/adaltas/node-csv/commits/csv-parse@5.3.8/packages/csv-parse) --- updated-dependencies: - dependency-name: csv-parse dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
61 lines
1.6 KiB
JSON
61 lines
1.6 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": "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/metadata-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"metadata",
|
|
"tag",
|
|
"label"
|
|
],
|
|
"author": "Docker",
|
|
"contributors": [
|
|
{
|
|
"name": "CrazyMax",
|
|
"url": "https://crazymax.dev"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^5.1.1",
|
|
"@docker/actions-toolkit": "^0.1.0",
|
|
"@renovate/pep440": "^1.0.0",
|
|
"csv-parse": "^5.3.8",
|
|
"handlebars": "^4.7.7",
|
|
"moment": "^2.29.4",
|
|
"moment-timezone": "^0.5.43",
|
|
"semver": "^7.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/node": "^16.18.23",
|
|
"@types/semver": "^7.3.13",
|
|
"@typescript-eslint/eslint-plugin": "^5.56.0",
|
|
"@typescript-eslint/parser": "^5.56.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"dotenv": "^16.0.3",
|
|
"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"
|
|
}
|
|
}
|