fake-it-til-you-git
Version:
A modern CLI tool to generate fake Git commit history for your GitHub/GitLab profile
76 lines (75 loc) • 2 kB
JSON
{
"name": "fake-it-til-you-git",
"version": "1.3.0",
"type": "module",
"description": "A modern CLI tool to generate fake Git commit history for your GitHub/GitLab profile",
"main": "dist/main.js",
"bin": {
"fake-it-til-you-git": "dist/bin/cli.js",
"fityg": "dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node --esm bin/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "biome check src/ bin/ tests/",
"lint:fix": "biome check --apply src/ bin/ tests/",
"format": "biome format --write src/ bin/ tests/",
"prepare": "npm run build",
"start": "node dist/bin/cli.js",
"prepublishOnly": "npm run test && npm run build",
"postversion": "git push && git push --tags",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"publish:patch": "npm run version:patch && npm publish",
"publish:minor": "npm run version:minor && npm publish",
"publish:major": "npm run version:major && npm publish"
},
"keywords": [
"git",
"github",
"fake",
"history",
"commits",
"cli",
"typescript",
"contribution-graph"
],
"author": "fake-it-til-you-git contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matifanger/fake-it-til-you-git.git"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/src/",
"dist/bin/",
"templates/",
"test-configs/",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}