mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 14:20:32 +11:00
37 lines
860 B
JSON
37 lines
860 B
JSON
{
|
|
"name": "@mshick/add-pr-comment",
|
|
"version": "1.0.0",
|
|
"description": "A GitHub Action which adds a comment to a Pull Request Issue.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint index.js",
|
|
"package": "ncc build index.js -o dist",
|
|
"test": "eslint index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mshick/add-pr-comment.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub",
|
|
"Actions",
|
|
"javascript",
|
|
"pull request",
|
|
"comments",
|
|
"pr"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mshick/add-pr-comment/issues"
|
|
},
|
|
"homepage": "https://github.com/mshick/add-pr-comment#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.1.1",
|
|
"@actions/github": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@zeit/ncc": "^0.20.5",
|
|
"eslint": "^6.3.0"
|
|
}
|
|
}
|