UNPKG

git-kloc-analyzer

Version:

A powerful TypeScript tool for analyzing KLOC (Kilo Lines of Code) statistics from Git repositories with email-based contributor grouping

53 lines (52 loc) 1.22 kB
{ "name": "git-kloc-analyzer", "version": "1.2.0", "description": "A powerful TypeScript tool for analyzing KLOC (Kilo Lines of Code) statistics from Git repositories with email-based contributor grouping", "main": "dist/kloc.js", "bin": { "git-kloc-analyzer": "dist/kloc.js" }, "scripts": { "build": "tsc", "start": "ts-node src/kloc.ts", "dev": "ts-node --watch src/kloc.ts", "clean": "rm -rf dist", "lint": "tsc --noEmit", "test": "echo \"Tests coming soon\" && exit 0" }, "keywords": [ "git", "kloc", "lines-of-code", "statistics", "analysis", "typescript", "cli" ], "author": "Ngo Tuan Long <tuanlongn@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/tuanlongn/kloc.git" }, "homepage": "https://github.com/tuanlongn/kloc#readme", "bugs": { "url": "https://github.com/tuanlongn/kloc/issues" }, "engines": { "node": ">=14.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "dependencies": { "@types/node": "^24.0.4", "commander": "^14.0.0" }, "devDependencies": { "ts-node": "^10.9.2", "typescript": "^5.8.3" } }