2019-11-24 16:44:26 +09:00
|
|
|
{
|
|
|
|
"name": "create-or-update-comment",
|
2024-01-25 20:45:09 +09:00
|
|
|
"version": "4.0.0",
|
2019-11-24 16:44:26 +09:00
|
|
|
"description": "Create or update an issue or pull request comment",
|
2023-04-05 16:14:13 +09:00
|
|
|
"main": "lib/main.js",
|
2019-11-24 16:44:26 +09:00
|
|
|
"scripts": {
|
2023-04-05 16:14:13 +09:00
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"test": "jest --passWithNoTests"
|
2019-11-24 16:44:26 +09:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/peter-evans/create-or-update-comment.git"
|
|
|
|
},
|
2023-04-05 16:14:13 +09:00
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"create",
|
|
|
|
"update",
|
|
|
|
"comment"
|
|
|
|
],
|
2019-11-24 16:44:26 +09:00
|
|
|
"author": "Peter Evans",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/peter-evans/create-or-update-comment/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/peter-evans/create-or-update-comment#readme",
|
|
|
|
"dependencies": {
|
2024-10-09 05:37:19 +00:00
|
|
|
"@actions/core": "^1.11.1",
|
2022-10-17 06:03:51 +00:00
|
|
|
"@actions/github": "^5.1.1"
|
2019-11-24 16:44:26 +09:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-05 16:14:13 +09:00
|
|
|
"@types/jest": "^27.0.3",
|
2025-01-01 05:14:59 +00:00
|
|
|
"@types/node": "^18.19.69",
|
2023-07-12 05:39:18 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
2023-07-12 05:42:08 +00:00
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2024-11-20 05:23:47 +00:00
|
|
|
"@vercel/ncc": "^0.38.3",
|
2024-09-18 05:15:18 +00:00
|
|
|
"eslint": "^8.57.1",
|
2024-03-06 05:50:44 +00:00
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2024-02-21 05:47:18 +00:00
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2024-07-24 05:55:45 +00:00
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
2023-04-05 16:14:13 +09:00
|
|
|
"jest": "^27.5.1",
|
2023-04-12 05:59:53 +00:00
|
|
|
"jest-circus": "^27.5.1",
|
2023-04-05 16:14:13 +09:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-12-11 05:48:56 +00:00
|
|
|
"prettier": "^3.4.2",
|
2023-04-05 16:14:13 +09:00
|
|
|
"ts-jest": "^27.1.5",
|
|
|
|
"typescript": "^4.9.5"
|
2019-11-24 16:44:26 +09:00
|
|
|
}
|
|
|
|
}
|