2020-09-23 08:58:52 +02:00
|
|
|
{
|
|
|
|
"name": "dockerhub-description",
|
|
|
|
"version": "3.0.0",
|
|
|
|
"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",
|
|
|
|
"test": "jest --passWithNoTests"
|
|
|
|
},
|
|
|
|
"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": {
|
2022-10-18 08:16:47 +02:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-01-27 09:19:41 +01:00
|
|
|
"node-fetch": "^2.6.7"
|
2020-09-23 08:58:52 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-27 09:32:28 +01:00
|
|
|
"@types/jest": "^27.0.3",
|
2023-01-03 02:55:19 +01:00
|
|
|
"@types/node": "^16.18.11",
|
2022-12-09 08:25:21 +01:00
|
|
|
"@typescript-eslint/parser": "^5.46.0",
|
2022-12-09 08:19:18 +01:00
|
|
|
"@vercel/ncc": "^0.36.0",
|
2022-12-09 08:23:37 +01:00
|
|
|
"eslint": "^8.29.0",
|
2022-12-09 08:21:21 +01:00
|
|
|
"eslint-plugin-github": "^4.6.0",
|
2023-01-03 02:54:58 +01:00
|
|
|
"eslint-plugin-jest": "^25.7.0",
|
2022-01-27 09:32:28 +01:00
|
|
|
"jest": "^27.4.3",
|
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",
|
2022-12-09 08:20:40 +01:00
|
|
|
"prettier": "^2.8.1",
|
2023-01-03 02:54:46 +01:00
|
|
|
"ts-jest": "^27.1.5",
|
2022-12-09 08:18:46 +01:00
|
|
|
"typescript": "^4.9.4"
|
2020-09-23 08:58:52 +02:00
|
|
|
}
|
|
|
|
}
|