generated from ModusCreateOrg/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "gh-migration-scripts",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha",
"analyze": "node index"
},
"bin": {
"git-migrator": "src/index.js",
"check-migrations": "./check_migrations.sh",
"compare-migrations": "./compare_migrations.sh",
"find-log-errors": "./find_log_errors.sh",
"migrate-secrets": "./migrate_secrets.sh",
"find-log-errors-js": "./find_log_errors.js"
},
"keywords": [],
"author": "ModusCreate",
"license": "ISC",
"dependencies": {
"axios": "^1.7.4",
"axios-retry": "^3.8.0",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"cli-table": "^0.3.11",
"commander": "^11.1.0",
"csv-stringify": "^6.4.2",
"dotenv": "^16.3.1",
"fast-csv": "^4.3.6",
"figlet": "^1.7.0",
"lodash.kebabcase": "^4.1.1",
"octokit": "^3.1.1",
"ora": "^7.0.1",
"progress-bar-cli": "^1.0.4",
"prompts": "^2.4.2"
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/register": "^7.22.15",
"chai": "^4.3.10",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"sinon": "^17.0.1"
}
}