2020-09-23 08:58:52 +02:00
|
|
|
{
|
|
|
|
"name": "dockerhub-description",
|
2024-01-25 13:25:01 +01:00
|
|
|
"version": "4.0.0",
|
2020-09-23 08:58:52 +02:00
|
|
|
"private": true,
|
|
|
|
"description": "An action to update a Docker Hub repository description from README.md",
|
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2023-03-05 03:13:27 +01:00
|
|
|
"test": "jest"
|
2020-09-23 08:58:52 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/peter-evans/dockerhub-description.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"dockerhub",
|
|
|
|
"description"
|
|
|
|
],
|
|
|
|
"author": "Peter Evans",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/peter-evans/dockerhub-description/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/peter-evans/dockerhub-description#readme",
|
|
|
|
"dependencies": {
|
2023-09-17 16:16:40 +02:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-08-27 16:06:09 +02:00
|
|
|
"node-fetch": "^2.7.0",
|
2023-03-06 04:50:56 +01:00
|
|
|
"unicode-substring": "^0.1.0"
|
2020-09-23 08:58:52 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-27 09:32:28 +01:00
|
|
|
"@types/jest": "^27.0.3",
|
2024-06-09 16:58:02 +02:00
|
|
|
"@types/node": "^16.18.98",
|
2023-07-16 16:31:56 +02:00
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2023-10-22 16:59:34 +02:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2024-02-25 15:47:09 +01:00
|
|
|
"eslint": "^8.57.0",
|
2024-03-03 15:56:04 +01:00
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2023-01-03 02:54:58 +01:00
|
|
|
"eslint-plugin-jest": "^25.7.0",
|
2024-01-14 15:59:38 +01:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2023-01-03 02:58:09 +01:00
|
|
|
"jest": "^27.5.1",
|
2023-01-03 02:54:26 +01:00
|
|
|
"jest-circus": "^27.5.1",
|
2022-01-27 09:32:28 +01:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-06-16 16:55:36 +02:00
|
|
|
"prettier": "^3.3.2",
|
2023-01-03 02:54:46 +01:00
|
|
|
"ts-jest": "^27.1.5",
|
2023-02-05 15:03:16 +01:00
|
|
|
"typescript": "^4.9.5"
|
2020-09-23 08:58:52 +02:00
|
|
|
}
|
|
|
|
}
|