-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "mortgage-payment-calculator",
"version": "1.0.0",
"description": "A financial calculator for computing mortgage payments based on down payment, interest rate, and loan length",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": ["mortgage", "calculator", "finance"],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.15.29",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/inquirer": "^9.0.8",
"inquirer": "^12.6.3"
}
}