-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 880 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
27
28
29
30
31
32
33
34
35
36
{
"name": "github-repo-transfer-utility",
"version": "1.0.2",
"description": "A utility to batch transfer GitHub repositories from one organization or user to another.",
"author": {
"name": "GitHub Expert Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Nick Nagel",
"email": "nicklegan@github.com",
"url": "https://github.com/nicklegan"
}
],
"license": "MIT",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"repository": "github:nicklegan/github-repo-transfer-utility",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"dependencies": {
"@octokit/rest": "^19.0.5",
"chalk": "^5.2.0",
"csv-parse": "^5.3.3",
"csv-stringify": "^6.2.3",
"dotenv": "^16.0.3",
"inquirer": "^9.1.4"
}
}