forked from dessant/label-actions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 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
53
54
55
56
57
58
59
60
61
62
{
"name": "label-actions",
"version": "2.0.0",
"description": "A GitHub Action that performs actions when issues or pull requests are labeled or unlabeled.",
"author": "Armin Sebastian",
"contributors": [
"Toshimaru"
],
"private": true,
"license": "MIT",
"homepage": "https://github.com/toshimaru/label-actions",
"repository": {
"url": "https://github.com/toshimaru/label-actions.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/toshimaru/label-actions/issues"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"issues",
"pull requests",
"github labels",
"comment",
"close",
"lock",
"label issues",
"close issues",
"lock issues",
"comment",
"automation",
"project management"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "ncc build src/index.js --license licenses.txt",
"format:write": "prettier --write src",
"format:check": "prettier --check src",
"release": "standard-version",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"joi": "^17.11.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0"
}
}