git-similarity-index
Version:
🔨 This simple tool calculates the similarity index between two files.
58 lines (57 loc) • 1.17 kB
JSON
{
"name": "git-similarity-index",
"description": "🔨 This simple tool calculates the similarity index between two files.",
"version": "1.2.4",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "piecioshka@gmail.com",
"url": "https://piecioshka.pl/"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "npm run test -- --coverage",
"build": "tsc"
},
"dependencies": {
"debug": "^4.3.7"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.9.1",
"@vitest/coverage-v8": "^2.1.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/piecioshka/git-similarity-index.git"
},
"engines": {
"node": ">=16"
},
"files": [
"bin",
"dist",
"types",
"package.json",
"LICENSE",
"README.md",
"!**/*.spec.*"
],
"keywords": [
"git",
"similarity",
"index",
"metrics",
"cli",
"command",
"tool"
],
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"bin": {
"git-similarity-index": "bin/cli.js"
}
}