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": {
|
2021-10-07 03:25:22 +02:00
|
|
|
"@actions/core": "1.6.0",
|
2021-09-02 06:49:41 +02:00
|
|
|
"node-fetch": "^2.6.1"
|
2020-09-23 08:58:52 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-07 03:25:22 +02:00
|
|
|
"@types/jest": "27.0.2",
|
|
|
|
"@types/node": "16.10.3",
|
|
|
|
"@typescript-eslint/parser": "4.33.0",
|
|
|
|
"@vercel/ncc": "0.31.1",
|
2021-09-02 03:23:31 +02:00
|
|
|
"eslint": "7.32.0",
|
2021-10-07 03:25:22 +02:00
|
|
|
"eslint-plugin-github": "4.3.2",
|
|
|
|
"eslint-plugin-jest": "24.5.2",
|
|
|
|
"jest": "27.2.4",
|
|
|
|
"jest-circus": "27.2.4",
|
2021-05-13 04:14:19 +02:00
|
|
|
"js-yaml": "4.1.0",
|
2021-10-07 03:25:22 +02:00
|
|
|
"prettier": "2.4.1",
|
2021-09-02 03:23:31 +02:00
|
|
|
"ts-jest": "27.0.5",
|
2021-10-07 03:25:22 +02:00
|
|
|
"typescript": "4.4.3"
|
2020-09-23 08:58:52 +02:00
|
|
|
}
|
|
|
|
}
|