1
0
Files
metadata-action/package.json
T

61 lines
1.6 KiB
JSON
Raw 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",
"main": "lib/main.js",
"scripts": {
2022-03-22 21:09:00 +01:00
"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",
2020-10-25 02:25:23 +01:00
"test": "jest --coverage",
2022-03-22 21:09:00 +01:00
"all": "yarn run build && yarn run format && yarn test"
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"
],
2021-05-08 01:41:46 +02:00
"author": "Docker",
"contributors": [
{
"name": "CrazyMax",
"url": "https://crazymax.dev"
}
],
"license": "Apache-2.0",
2020-10-25 02:25:23 +01:00
"dependencies": {
2022-09-29 19:15:00 +00:00
"@actions/core": "^1.10.0",
2022-10-07 18:51:43 +00:00
"@actions/github": "^5.1.1",
"@docker/actions-toolkit": "^0.1.0",
2021-07-06 13:56:48 +02:00
"@renovate/pep440": "^1.0.0",
2023-04-17 19:57:54 +00:00
"csv-parse": "^5.3.8",
2021-03-19 11:28:33 +01:00
"handlebars": "^4.7.7",
2022-10-07 18:58:07 +00:00
"moment": "^2.29.4",
2023-04-17 04:32:40 +00:00
"moment-timezone": "^0.5.43",
2023-04-18 07:22:30 +00:00
"semver": "^7.5.0"
2020-10-25 02:25:23 +01:00
},
"devDependencies": {
2022-03-22 21:09:00 +01:00
"@types/csv-parse": "^1.2.2",
2023-04-17 04:36:33 +02:00
"@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"
2020-10-25 02:25:23 +01:00
}
}