32 lines
852 B
JSON
Raw Normal View History

2019-11-24 16:44:26 +09:00
{
"name": "create-or-update-comment",
"version": "1.0.0",
"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": {
"@actions/core": "1.2.6",
2020-09-17 01:17:33 +00:00
"@actions/github": "4.0.0"
2019-11-24 16:44:26 +09:00
},
"devDependencies": {
2020-12-24 02:06:29 +00:00
"@vercel/ncc": "0.26.1",
"eslint": "7.16.0",
2020-11-19 01:18:42 +00:00
"jest": "26.6.3"
2019-11-24 16:44:26 +09:00
}
}