dockerhub-description/package.json

49 lines
1.3 KiB
JSON
Raw 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": {
"@actions/core": "1.2.6",
2020-09-23 08:58:52 +02:00
"node-fetch": "2.6.1"
},
"devDependencies": {
2021-02-25 02:37:12 +01:00
"@types/jest": "26.0.20",
"@types/node": "14.14.31",
"@typescript-eslint/parser": "4.15.2",
"@vercel/ncc": "0.27.0",
"eslint": "7.20.0",
2020-09-23 08:58:52 +02:00
"eslint-plugin-github": "4.1.1",
2021-02-25 02:37:12 +01:00
"eslint-plugin-jest": "24.1.5",
2020-12-24 03:02:44 +01:00
"jest": "26.6.3",
"jest-circus": "26.6.3",
2021-02-25 02:37:12 +01:00
"js-yaml": "4.0.0",
2020-12-24 03:02:44 +01:00
"prettier": "2.2.1",
2021-02-25 02:37:12 +01:00
"ts-jest": "26.5.2",
"typescript": "4.2.2"
2020-09-23 08:58:52 +02:00
}
}