dockerhub-description/package.json

49 lines
1.3 KiB
JSON
Raw Permalink Normal View History

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-05-27 03:31:58 +02:00
"@actions/core": "1.3.0",
2020-09-23 08:58:52 +02:00
"node-fetch": "2.6.1"
},
"devDependencies": {
2021-05-13 04:14:19 +02:00
"@types/jest": "26.0.23",
2021-05-27 03:31:58 +02:00
"@types/node": "15.6.1",
"@typescript-eslint/parser": "4.25.0",
"@vercel/ncc": "0.28.6",
"eslint": "7.27.0",
2021-05-13 04:14:19 +02:00
"eslint-plugin-github": "4.1.3",
"eslint-plugin-jest": "24.3.6",
2021-05-27 03:31:58 +02:00
"jest": "27.0.1",
"jest-circus": "27.0.1",
2021-05-13 04:14:19 +02:00
"js-yaml": "4.1.0",
"prettier": "2.3.0",
2021-05-27 03:31:58 +02:00
"ts-jest": "27.0.1",
"typescript": "4.3.2"
2020-09-23 08:58:52 +02:00
}
}