forked from dessant/support-requests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "support-requests",
"version": "3.0.0",
"description": "A GitHub Action that comments on and closes issues labeled as support requests.",
"author": "Armin Sebastian",
"license": "MIT",
"homepage": "https://github.com/dessant/support-requests",
"repository": {
"url": "https://github.com/dessant/support-requests.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/support-requests/issues"
},
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"update": "ncu --upgrade",
"release": "standard-version",
"push": "git push --tags origin master"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"joi": "^17.7.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"npm-check-updates": "^16.4.3",
"prettier": "^2.8.0",
"standard-version": "^9.5.0"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"github",
"issues",
"support",
"label",
"support issues",
"label issues",
"close issues",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}