-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "issue-states",
"version": "3.0.0",
"description": "A GitHub Action that closes or reopens issues when they are moved to a project column.",
"author": "Armin Sebastian",
"license": "MIT",
"homepage": "https://github.com/dessant/issue-states",
"repository": {
"url": "https://github.com/dessant/issue-states.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/issue-states/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 main"
},
"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",
"projects",
"project columns",
"project cards",
"to do",
"in progress",
"done",
"github projects",
"open issues",
"close issues",
"automation",
"github actions",
"project management",
"bot"
],
"private": true
}