dockerhub-description/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

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",
"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": {
"@actions/core": "^1.10.1",
"node-fetch": "^2.7.0",
"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",
"@types/node": "^16.18.76",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
2022-01-27 09:32:28 +01:00
"js-yaml": "^4.1.0",
"prettier": "^3.2.5",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
2020-09-23 08:58:52 +02:00
}
}