This repository was archived by the owner on Dec 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.09 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.09 KB
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
63
64
{
"name": "github-commander",
"version": "0.12.0",
"description": "A CLI tool for performing tedious GitHub settings with a keystroke",
"keywords": [
"GitHub",
"repository",
"repositories",
"team",
"teams",
"label",
"labels",
"permission",
"permissions",
"org",
"management"
],
"bugs": "https://github.com/svenmuennich/github-commander/issues",
"license": "MIT",
"author": "Sven Münnich",
"main": "./index.js",
"bin": {
"github-commander": "./index.js",
"github-commander-add-issues-to-project": "./lib/commands/addIssuesToProject.js",
"github-commander-bulk-update-repositories": "./lib/commands/bulkUpdateRepositories.js",
"github-commander-issue-labels": "./lib/commands/issueLabels.js",
"github-commander-issue-templates": "./lib/commands/issueTemplates.js",
"github-commander-move-column-to-project": "./lib/commands/moveColumnToProject.js",
"github-commander-repository-permissions": "./lib/commands/repositoryPermissions.js",
"github-commander-repository-settings": "./lib/commands/repositorySettings.js",
"github-commander-transfer-open-issues": "./lib/commands/transferOpenIssues.js"
},
"directories": {
"lib": "./lib"
},
"repository": "svenmuennich/github-commander",
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"start": "node ."
},
"dependencies": {
"bottleneck": "^2.19.5",
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"cli-table": "^0.3.6",
"co": "^4.6.0",
"co-prompt": "github:svenmuennich/co-prompt",
"commander": "^7.2.0",
"execa": "^5.0.0",
"js-yaml": "^4.0.0",
"mz": "^2.7.0",
"octokit": "^1.0.1",
"simple-git": "^2.37.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"viison-style-guide": "git+https://github.com/pickware/style-guide.git"
},
"engines": {
"node": "^14.0.0"
},
"preferGlobal": true
}