@followthecode/cli 1.2.43 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,105 +1,105 @@
1
- {
2
- "name": "@followthecode/cli",
3
- "version": "1.2.43",
4
- "description": "CLI tool for Git repository analysis and data collection",
5
- "main": "index.js",
6
- "license": "UNLICENSED",
7
- "publishConfig": {
8
- "access": "public"
9
- },
10
- "bin": {
11
- "ftc": "./bin/ftc.js",
12
- "ftc-linux": "./bin/ftc"
13
- },
14
- "scripts": {
15
- "build": "npm run build:all && npm run setup",
16
- "build:all": "npm run build:win && npm run build:mac && npm run build:linux",
17
- "build:win": "dotnet publish ftc.cli.csproj -c Release -r win-x64 -o ./bin/win-x64",
18
- "build:mac": "dotnet publish ftc.cli.csproj -c Release -r osx-x64 -o ./bin/osx-x64",
19
- "build:linux": "dotnet publish ftc.cli.csproj -c Release -r linux-x64 -o ./bin/linux-x64",
20
- "setup": "npm run sync-version && npm run copy-config && npm run set-permissions",
21
- "sync-version": "node scripts/sync-version.js",
22
- "copy-config": "node scripts/copy-config.js",
23
- "set-permissions": "node scripts/set-permissions.js",
24
- "postinstall": "node scripts/post-install.js",
25
- "test": "dotnet test",
26
- "test:install": "npm run test:install:win",
27
- "test:install:win": "powershell -ExecutionPolicy Bypass -File scripts/test-simple.ps1",
28
- "test:install:linux": "bash scripts/test-installation.sh",
29
- "test:install:wsl": "wsl bash scripts/test-installation.sh",
30
- "clean": "dotnet clean",
31
- "publish": "node scripts/publish.js",
32
- "publish:patch": "node scripts/publish.js --patch",
33
- "publish:minor": "node scripts/publish.js --minor",
34
- "publish:major": "node scripts/publish.js --major"
35
- },
36
- "keywords": [
37
- "git",
38
- "analysis",
39
- "repository",
40
- "cli",
41
- "follow-the-code",
42
- "metrics",
43
- "csv",
44
- "json",
45
- "s3"
46
- ],
47
- "author": "Follow The Code Team",
48
- "repository": {
49
- "type": "git",
50
- "url": "https://github.com/your-org/follow-the-code.git"
51
- },
52
- "bugs": {
53
- "url": "https://github.com/your-org/follow-the-code/issues"
54
- },
55
- "homepage": "https://github.com/your-org/follow-the-code#readme",
56
- "engines": {
57
- "node": ">=14.0.0"
58
- },
59
- "os": [
60
- "win32",
61
- "darwin",
62
- "linux"
63
- ],
64
- "cpu": [
65
- "x64",
66
- "arm64"
67
- ],
68
- "files": [
69
- "bin/ftc.js",
70
- "bin/ftc",
71
- "bin/win-x64/ftc.cli.exe",
72
- "bin/win-x64/appsettings.json",
73
- "bin/win-x64/git2-3f4182d.dll",
74
- "bin/osx-x64/ftc.cli",
75
- "bin/osx-x64/appsettings.json",
76
- "bin/osx-x64/libgit2-3f4182d.dylib",
77
- "bin/linux-x64/ftc.cli",
78
- "bin/linux-x64/appsettings.json",
79
- "bin/linux-x64/libgit2-3f4182d.so",
80
- "appsettings.json",
81
- "scripts/sync-version.js",
82
- "scripts/copy-config.js",
83
- "scripts/set-permissions.js",
84
- "scripts/install-wrapper.js",
85
- "scripts/post-install.js",
86
- "scripts/README.md",
87
- "README.md",
88
- "LICENSE",
89
- "TESTING_INSTALLATION.md"
90
- ],
91
- "dependencies": {
92
- "node-fetch": "^3.3.0"
93
- },
94
- "devDependencies": {
95
- "@types/node": "^18.0.0"
96
- },
97
- "overrides": {
98
- "node-domexception": {
99
- "node-domexception": "npm:undici@^5.0.0"
100
- }
101
- },
102
- "resolutions": {
103
- "node-domexception": "npm:undici@^5.0.0"
104
- }
1
+ {
2
+ "name": "@followthecode/cli",
3
+ "version": "2.0.1",
4
+ "description": "CLI tool for Git repository analysis and data collection",
5
+ "main": "index.js",
6
+ "license": "UNLICENSED",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "bin": {
11
+ "ftc": "./bin/ftc.js",
12
+ "ftc-linux": "./bin/ftc"
13
+ },
14
+ "scripts": {
15
+ "build": "npm run build:all && npm run setup",
16
+ "build:all": "npm run build:win && npm run build:mac && npm run build:linux",
17
+ "build:win": "dotnet publish ftc.cli.csproj -c Release -r win-x64 -o ./bin/win-x64",
18
+ "build:mac": "dotnet publish ftc.cli.csproj -c Release -r osx-x64 -o ./bin/osx-x64",
19
+ "build:linux": "dotnet publish ftc.cli.csproj -c Release -r linux-x64 -o ./bin/linux-x64",
20
+ "setup": "npm run sync-version && npm run copy-config && npm run set-permissions",
21
+ "sync-version": "node scripts/sync-version.js",
22
+ "copy-config": "node scripts/copy-config.js",
23
+ "set-permissions": "node scripts/set-permissions.js",
24
+ "postinstall": "node scripts/post-install.js",
25
+ "test": "dotnet test",
26
+ "test:install": "npm run test:install:win",
27
+ "test:install:win": "powershell -ExecutionPolicy Bypass -File scripts/test-simple.ps1",
28
+ "test:install:linux": "bash scripts/test-installation.sh",
29
+ "test:install:wsl": "wsl bash scripts/test-installation.sh",
30
+ "clean": "dotnet clean",
31
+ "publish": "node scripts/publish.js",
32
+ "publish:patch": "node scripts/publish.js --patch",
33
+ "publish:minor": "node scripts/publish.js --minor",
34
+ "publish:major": "node scripts/publish.js --major"
35
+ },
36
+ "keywords": [
37
+ "git",
38
+ "analysis",
39
+ "repository",
40
+ "cli",
41
+ "follow-the-code",
42
+ "metrics",
43
+ "csv",
44
+ "json",
45
+ "s3"
46
+ ],
47
+ "author": "Follow The Code Team",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "https://github.com/your-org/follow-the-code.git"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/your-org/follow-the-code/issues"
54
+ },
55
+ "homepage": "https://github.com/your-org/follow-the-code#readme",
56
+ "engines": {
57
+ "node": ">=14.0.0"
58
+ },
59
+ "os": [
60
+ "win32",
61
+ "darwin",
62
+ "linux"
63
+ ],
64
+ "cpu": [
65
+ "x64",
66
+ "arm64"
67
+ ],
68
+ "files": [
69
+ "bin/ftc.js",
70
+ "bin/ftc",
71
+ "bin/win-x64/ftc.cli.exe",
72
+ "bin/win-x64/appsettings.json",
73
+ "bin/win-x64/git2-3f4182d.dll",
74
+ "bin/osx-x64/ftc.cli",
75
+ "bin/osx-x64/appsettings.json",
76
+ "bin/osx-x64/libgit2-3f4182d.dylib",
77
+ "bin/linux-x64/ftc.cli",
78
+ "bin/linux-x64/appsettings.json",
79
+ "bin/linux-x64/libgit2-3f4182d.so",
80
+ "appsettings.json",
81
+ "scripts/sync-version.js",
82
+ "scripts/copy-config.js",
83
+ "scripts/set-permissions.js",
84
+ "scripts/install-wrapper.js",
85
+ "scripts/post-install.js",
86
+ "scripts/README.md",
87
+ "README.md",
88
+ "LICENSE",
89
+ "TESTING_INSTALLATION.md"
90
+ ],
91
+ "dependencies": {
92
+ "node-fetch": "^3.3.0"
93
+ },
94
+ "devDependencies": {
95
+ "@types/node": "^18.0.0"
96
+ },
97
+ "overrides": {
98
+ "node-domexception": {
99
+ "node-domexception": "npm:undici@^5.0.0"
100
+ }
101
+ },
102
+ "resolutions": {
103
+ "node-domexception": "npm:undici@^5.0.0"
104
+ }
105
105
  }