forked from lando/transfer-issue-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "@lando/transfer-issue-action",
"description": "A GitHub Action for transferring issues between github repos with the ability to create a stub issue in the original repo.",
"version": "2.0.3",
"author": "John Ouellet @labboy0276",
"license": "GPL-3.0",
"repository": "https://github.com/lando/transfer-issue-action",
"bugs": "https://github.com/lando/transfer-issue-action/issues",
"homepage": "https://github.com/lando/transfer-issue-action",
"keywords": [
"lando",
"transfer github issue",
"Github Actions"
],
"engines": {
"node": ">=14.0.0"
},
"main": "lib/index.js",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"debug": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"eslint": "^7.32.0",
"version-bump-prompt": "^6.1.0"
},
"scripts": {
"lint": "eslint .",
"release": "bump --tag --all --push package.json && git tag --force --annotate --message 'moving v2 tag' v2 && git push origin v2 --force"
}
}