-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "loan-schedule.js",
"version": "2.0.5",
"description": "Library for loan amortization schedule manipulation",
"main": "./dist/index.js",
"scripts": {
"lint": "npx eslint ./src/*.ts --fix",
"watch": "npx tsc -p tsconfig.json --watch",
"build": "npx tsc -p tsconfig.json",
"test": "npx jest",
"coverage": "npx jest --collectCoverage"
},
"repository": {
"type": "git",
"url": "https://github.com/timmson/loan-schedule.js"
},
"keywords": [
"loan",
"schedule",
"finance",
"mortgage",
"lending"
],
"author": "timmson",
"license": "MIT",
"bugs": {
"url": "https://github.com/timmson/loan-schedule.js/issues"
},
"dependencies": {
"decimal.js": "^10.4.3",
"moment": "^2.29.4",
"prod-cal": "^3.0.7"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"typescript": "^5.0.4"
}
}