forked from mshick/add-pr-comment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@mshick/add-pr-comment",
"version": "1.0.0",
"description": "A GitHub Action which adds a comment to a Pull Request Issue.",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"lint": "eslint . --ext .ts",
"test": "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 <[email protected]>",
"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.4.0",
"@types/jest": "^26.0.9",
"@types/node": "^12.12.42",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.3.0",
"jest-circus": "^26.3.0",
"nock": "^13.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
}
}