forked from github/gh-migration-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
35
36
37
38
39
40
41
42
43
44
{
"name": "gh-migration-analyzer",
"version": "1.0.0",
"description": "A command-line (cli) utility tool to help customers migrating repositories to GitHub plan for and size their migration.",
"main": "src/index.js",
"preferGlobal": true,
"bin": {
"gh-migration-analyzer": "./bin/gh-migration-analyzer.js"
},
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/gh-migration-analyzer.git"
},
"keywords": [
"Octoshift",
"cli",
"migration",
"Azure"
],
"author": "GitHub Migration Tools",
"license": "MIT",
"bugs": {
"url": "https://github.com/github/gh-migration-analyzer/issues"
},
"homepage": "https://github.com/github/gh-migration-analyzer#readme",
"dependencies": {
"commander": "^8.2.0",
"csv-writer": "^1.6.0",
"node-fetch": "^2.6.0",
"ora": "^6.0.1",
"p-limit": "^4.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"jest": "^27.3.1"
}
}