forked from timmson/loan-schedule.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 KB
/
package.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "loan-schedule",
"version": "1.2.0",
"description": "Library for loan amortization schedule manipulation",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "bunx eslint ./src/*.ts --fix",
"watch": "bunx tsc -p tsconfig.json --watch",
"build": "bunx rimraf dist && bun build.ts && bunx tsc --emitDeclarationOnly",
"test": "bun test",
"coverage": "bun test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/LordZardeck/loan-schedule"
},
"keywords": [
"loan",
"schedule",
"finance",
"mortgage",
"lending"
],
"author": "timmson",
"license": "MIT",
"bugs": {
"url": "https://github.com/LordZardeck/loan-schedule/issues"
},
"peerDependencies": {
"date-fns": "^3.2.0",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"prod-cal": "^2.0.1",
"@types/big.js": "^6.2.2",
"@types/bun": "^1.0.2",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.5.0",
"prettier": "3.1.0",
"typescript": "^5.0.4"
}
}