create-or-update-comment/package.json

32 lines
856 B
JSON
Raw Normal View History

2019-11-24 15:44:26 +08:00
{
"name": "create-or-update-comment",
2022-03-22 13:58:13 +08:00
"version": "2.0.0",
2019-11-24 15:44:26 +08:00
"description": "Create or update an issue or pull request comment",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/create-or-update-comment.git"
},
"keywords": [],
"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": {
2022-01-28 10:23:56 +08:00
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
2019-11-24 15:44:26 +08:00
},
"devDependencies": {
2022-01-28 10:23:56 +08:00
"@vercel/ncc": "^0.32.0",
"eslint": "^8.3.0",
"jest": "^27.4.3"
2019-11-24 15:44:26 +08:00
}
}