๐Ÿ“ฆ timrogers / gh-migration-audit

๐Ÿ“„ package.json ยท 58 lines
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{
  "name": "gh-migration-audit",
  "version": "2.1.0",
  "type": "module",
  "description": "Audits GitHub repositories to highlight data that cannot be automatically migrated using GitHub's migration tools",
  "homepage": "https://github.com/timrogers/gh-migration-audit",
  "scripts": {
    "package": "node build.js && npx pkg dist/migration-audit.cjs --out-path bin --targets node20-linux-x64,node20-macos-x64,node20-win-x64",
    "lint": "eslint . --ext .ts",
    "lint-and-fix": "eslint . --ext .ts --fix",
    "dev": "npx tsx src/index.ts",
    "test": "jest",
    "configure-github-enterprise-server-instance": "npx tsx script/configure-github-enterprise-server-instance.ts"
  },
  "author": "Tim Rogers <me@timrogers.co.uk>",
  "license": "MIT",
  "dependencies": {
    "@fast-csv/parse": "^5.0.2",
    "@octokit/graphql": "^8.0.1",
    "@octokit/plugin-paginate-graphql": "^4.0.0",
    "@octokit/plugin-throttling": "^8.1.3",
    "chalk": "^5.4.1",
    "commander": "^12.1.0",
    "csv-stringify": "^6.4.6",
    "filesize": "^10.1.6",
    "octokit": "^3.1.2",
    "posthog-node": "^4.0.0",
    "semver": "^7.6.0",
    "undici": "^7.3.0",
    "winston": "^3.14.2"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.1",
    "@eslint/js": "^9.23.0",
    "@types/jest": "^29.5.12",
    "@types/semver": "^7.5.8",
    "@yao-pkg/pkg": "^5.12.0",
    "esbuild": "^0.25.0",
    "eslint": "^9.23.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "fetch-mock": "^10.0.7",
    "globals": "^16.0.0",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "libsodium-wrappers": "^0.7.15",
    "prettier": "^3.3.2",
    "ts-jest": "^29.2.5",
    "tsx": "^4.19.3",
    "typescript": "^5.6.3",
    "typescript-eslint": "^8.27.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/timrogers/gh-migration-audit.git"
  }
}