-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "@dazlab-team/loan-calc",
"version": "0.1.5",
"description": "Loan calculator written in TypeScript. OO interface. ARM (Adjustable Rate Mortgage) options. Interest only repayments. Extra monthly payments option. Adjustable repayment frequency.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config=jest.config.json",
"prepublish": "npm test"
},
"keywords": [
"loan",
"mortgage",
"calculator",
"formulas",
"arm",
"repayments",
"interest",
"principal"
],
"author": "Andrew Anisimov <[email protected]> (https://www.dazlab.global/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dazlab-team/loan-calc-typescript.git"
},
"bugs": {
"url": "https://github.com/dazlab-team/loan-calc-typescript/issues"
},
"homepage": "https://github.com/dazlab-team/loan-calc-typescript#readme",
"devDependencies": {
"@types/jest": "^22.1.4",
"jest": "^22.4.2",
"ts-jest": "^22.4.1",
"typescript": "^2.7.2"
}
}