-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "financial",
"description": "A Zero-dependency TypeScript/JavaScript port of numpy-financial",
"author": "Luciano Mammino <no@spam.com> (https://loige.co)",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/lmammino/financial.git"
},
"bugs": {
"url": "https://github.com/lmammino/financial/issues"
},
"homepage": "https://financialjs.netlify.app",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/financial.esm.js",
"engines": {
"node": ">=12"
},
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"build:docs": "typedoc --out docs/ src/",
"test": "tsdx test --coverage",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"keywords": [
"financial",
"numpy",
"numpy-financial",
"mortgage",
"fv",
"pmt",
"nper",
"ipmt",
"ppmt",
"pv",
"rate",
"irr",
"npv",
"mirr"
]
}