github-lang-stats 1.0.1 → 1.0.2
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.
- package/LICENSE +1 -1
- package/README.md +4 -0
- package/package.json +17 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026 smallstack
|
|
3
|
+
Copyright (c) 2026 smallstack GmbH (https://smallstack.com)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -148,3 +148,7 @@ The `totals` field maps directly to the `githubLanguageTotals` field in the CV w
|
|
|
148
148
|
- **Subsequent runs are fast** — only new commits since the last run are fetched.
|
|
149
149
|
- **Exclude infrastructure languages** with `--exclude-langs HCL,Dockerfile` if teammates committed those to repos you also touched.
|
|
150
150
|
- **Adjust concurrency** carefully — GitHub's [secondary rate limits](https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api) may trigger at high concurrency even if your primary limit is not exhausted. `5` is a safe default.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
Made by [smallstack GmbH](https://smallstack.com) · [GitHub](https://github.com/smallstack/github-lang-stats) · [npm](https://www.npmjs.com/package/github-lang-stats)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-lang-stats",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CLI that computes per-author GitHub language statistics by sampling commit file changes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/lib.js",
|
|
@@ -50,8 +50,23 @@
|
|
|
50
50
|
"languages",
|
|
51
51
|
"cli",
|
|
52
52
|
"developer",
|
|
53
|
-
"git"
|
|
53
|
+
"git",
|
|
54
|
+
"language-stats",
|
|
55
|
+
"code-analysis",
|
|
56
|
+
"contribution-stats"
|
|
54
57
|
],
|
|
58
|
+
"author": {
|
|
59
|
+
"name": "smallstack GmbH",
|
|
60
|
+
"url": "https://smallstack.com"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://github.com/smallstack/github-lang-stats#readme",
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "https://github.com/smallstack/github-lang-stats.git"
|
|
66
|
+
},
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/smallstack/github-lang-stats/issues"
|
|
69
|
+
},
|
|
55
70
|
"license": "MIT",
|
|
56
71
|
"publishConfig": {
|
|
57
72
|
"access": "public"
|