forked from ben-z/actions-comment-on-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 955 Bytes
/
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
{
"name": "actions-comment-on-issue",
"version": "1.0.2",
"description": "GitHub action for commenting on issues",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ben-z/actions-comment-on-issue.git"
},
"keywords": [
"actions",
"container",
"issue",
"comment",
"message"
],
"author": "Ben Zhang and Térence Hollander",
"license": "MIT",
"bugs": {
"url": "https://github.com/ben-z/actions-comment-on-issue/issues"
},
"homepage": "https://github.com/ben-z/actions-comment-on-issue",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/io": "^1.0.0",
"@actions/exec": "^1.0.0",
"@actions/github": "^1.0.0",
"@actions/tool-cache": "^1.0.0"
},
"devDependencies": {
"@types/node": "^12.0.4",
"prettier": "^1.17.1",
"typescript": "^3.5.1"
}
}