forked from Maximisch/issue-sync-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 927 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
{
"name": "issue-sync-action",
"version": "1.9.0",
"description": "GitHub Action to sync issues from one repository location to another repository. Can be used for syncing issues from a private development repo to a public roadmap repo.",
"main": "index.ts",
"scripts": {
"make-deploy": "npx prettier --write . && tsc && ncc build --source-map --license licenses.txt",
"format": "npx prettier --write .",
"try-label-sync": "ts-node-dev index.ts --owner_source Braustuben --owner_target Braustuben --repo_source synctest-source --repo_target synctest-target",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"action"
],
"author": "Maximilian Schirm",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"octokit": "^2.1.0"
},
"devDependencies": {
"prettier": "^3.0.0",
"typescript": "^5.0.2"
}
}