-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "@relbns/github-cloner",
"version": "1.1.1",
"description": "Github Cloner is a CLI tool for cloning Github repositories with interactive lists in the terminal. the tool lists your repositories and sorts them by owners (users and organizations) and by name. choosing the repo will clone it to the current directory if it's not already cloned there.",
"exports": "./src/cli.js",
"type": "module",
"bin": {
"@relbns/github-cloner": "bin/github-cloner.js",
"clone": "bin/github-cloner.js"
},
"scripts": {
"start": "node github-cli-cloner.js"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.5.1"
},
"keywords": [
"cli",
"git",
"github",
"clone",
"cloner",
"github-cloner"
],
"publishConfig": {
"access": "public"
},
"author": "Ariel Benesh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/relbns/github-cloner.git"
},
"bugs": {
"url": "https://github.com/relbns/github-cloner/issues"
},
"homepage": "https://github.com/relbns/github-cloner#readme",
"dependencies": {
"axios": "^1.5.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.3.7",
"inquirer-autocomplete-prompt": "^3.0.1",
"lodash": "^4.17.21",
"ora": "^7.0.1",
"simple-git": "^3.20.0"
}
}