2020-10-25 09:25:23 +08:00
|
|
|
{
|
2021-05-10 21:39:06 +08:00
|
|
|
"name": "docker-metadata-action",
|
2020-10-25 09:25:23 +08:00
|
|
|
"description": "GitHub Action to extract metadata (tags, labels) for Docker",
|
2024-05-07 16:45:56 +08:00
|
|
|
"main": "src/main.ts",
|
2020-10-25 09:25:23 +08:00
|
|
|
"scripts": {
|
2024-05-07 16:45:56 +08:00
|
|
|
"build": "ncc build --source-map --minify --license licenses.txt",
|
2023-09-07 16:26:40 +08:00
|
|
|
"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\"",
|
2024-05-07 16:45:56 +08:00
|
|
|
"test": "jest"
|
2020-10-25 09:25:23 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-05-08 07:41:46 +08:00
|
|
|
"url": "git+https://github.com/docker/metadata-action.git"
|
2020-10-25 09:25:23 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"docker",
|
2021-05-08 07:41:46 +08:00
|
|
|
"metadata",
|
2020-10-25 09:25:23 +08:00
|
|
|
"tag",
|
|
|
|
"label"
|
|
|
|
],
|
2023-09-08 15:49:03 +08:00
|
|
|
"author": "Docker Inc.",
|
2021-05-08 07:41:46 +08:00
|
|
|
"license": "Apache-2.0",
|
2024-05-07 16:45:56 +08:00
|
|
|
"packageManager": "yarn@3.6.3",
|
2020-10-25 09:25:23 +08:00
|
|
|
"dependencies": {
|
2023-09-12 15:00:46 +08:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-10-25 21:37:52 +08:00
|
|
|
"@actions/github": "^6.0.0",
|
2024-05-15 04:17:26 +08:00
|
|
|
"@docker/actions-toolkit": "^0.23.0",
|
2021-07-06 19:56:48 +08:00
|
|
|
"@renovate/pep440": "^1.0.0",
|
2024-03-14 01:51:50 +08:00
|
|
|
"csv-parse": "^5.5.5",
|
2023-09-12 15:24:46 +08:00
|
|
|
"handlebars": "^4.7.8",
|
2024-01-05 17:47:50 +08:00
|
|
|
"moment": "^2.30.1",
|
2024-03-14 01:49:48 +08:00
|
|
|
"moment-timezone": "^0.5.45",
|
2024-05-15 18:08:12 +08:00
|
|
|
"semver": "^7.6.2"
|
2020-10-25 09:25:23 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-23 04:09:00 +08:00
|
|
|
"@types/csv-parse": "^1.2.2",
|
2023-09-07 16:22:58 +08:00
|
|
|
"@types/node": "^20.5.9",
|
2024-04-11 19:43:29 +08:00
|
|
|
"@types/semver": "^7.5.8",
|
2023-09-07 16:26:40 +08:00
|
|
|
"@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",
|
2023-04-17 10:36:33 +08:00
|
|
|
"ts-node": "^10.9.1",
|
2023-09-07 16:26:40 +08:00
|
|
|
"typescript": "^5.2.2"
|
2020-10-25 09:25:23 +08:00
|
|
|
}
|
|
|
|
}
|