Files
metadata-action/package.json

56 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2020-10-25 02:25:23 +01:00
{
2021-05-10 15:39:06 +02:00
"name": "docker-metadata-action",
2020-10-25 02:25:23 +01:00
"description": "GitHub Action to extract metadata (tags, labels) for Docker",
"type": "module",
"main": "src/main.ts",
2020-10-25 02:25:23 +01:00
"scripts": {
"build": "ncc build --source-map --minify --license licenses.txt",
"lint": "eslint --max-warnings=0 .",
"format": "eslint --fix .",
"test": "vitest run"
2020-10-25 02:25:23 +01:00
},
"repository": {
"type": "git",
2021-05-08 01:41:46 +02:00
"url": "git+https://github.com/docker/metadata-action.git"
2020-10-25 02:25:23 +01:00
},
"keywords": [
"actions",
"docker",
2021-05-08 01:41:46 +02:00
"metadata",
2020-10-25 02:25:23 +01:00
"tag",
"label"
],
"author": "Docker Inc.",
2021-05-08 01:41:46 +02:00
"license": "Apache-2.0",
"packageManager": "yarn@4.9.2",
2020-10-25 02:25:23 +01:00
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@docker/actions-toolkit": "^0.79.0",
"@renovate/pep440": "^1.0.0",
"csv-parse": "^6.1.0",
"handlebars": "^4.7.8",
"moment": "^2.30.1",
"moment-timezone": "^0.6.1",
"semver": "^7.7.4"
2020-10-25 02:25:23 +01:00
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^24.11.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"dotenv": "^17.3.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
2020-10-25 02:25:23 +01:00
}
}