coast-fire-calculator-cli
Version:
Interactive CLI to estimate your Coast FIRE age—enter your savings, investments, and goals to see when you can stop contributing and still reach financial independence.
54 lines (53 loc) • 1.67 kB
JSON
{
"name": "coast-fire-calculator-cli",
"version": "1.0.2",
"description": "Interactive CLI to estimate your Coast FIRE age—enter your savings, investments, and goals to see when you can stop contributing and still reach financial independence.",
"main": "index.js",
"type": "module",
"node": "18",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"start": "node index.js",
"commit": "git-cz",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"release:prepatch": "node scripts/release.js prepatch",
"release:preminor": "node scripts/release.js preminor",
"release:premajor": "node scripts/release.js premajor",
"release": "node scripts/release.js"
},
"keywords": [
"fire",
"financial-independence",
"retirement",
"calculator",
"cli"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.12.1",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"bin": {
"coast-fire-calculator-cli": "index.js"
},
"dependencies": {
"chalk": "^5.4.1",
"chalk-animation": "^2.0.3",
"figlet": "^1.8.1",
"gradient-string": "^3.0.0",
"inquirer": "^12.6.3",
"nanospinner": "^1.2.2"
},
"devDependencies": {
"jest": "^29.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0"
}
}