add-pr-comment/package.json

51 lines
1.4 KiB
JSON

{
"name": "@mshick/add-pr-comment",
"version": "1.0.0",
"description": "A GitHub Action which adds a comment to a Pull Request Issue.",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && ncc build add-pr-comment.ts -o dist -m",
"lint": "eslint . --ext .ts",
"test": "tsc --noEmit && jest",
"clean": "rm -rf node_modules dist package-lock.json __tests__/runner/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mshick/add-pr-comment.git"
},
"keywords": [
"GitHub",
"Actions",
"javascript",
"pull request",
"comments",
"pr"
],
"author": "Michael Shick <m@shick.us>",
"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.2.4",
"@actions/github": "^4.0.0",
"@actions/http-client": "^1.0.8"
},
"devDependencies": {
"@octokit/types": "^5.0.1",
"@types/jest": "^26.0.3",
"@types/node": "^12.12.42",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"nock": "^13.0.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
}
}