-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "financial",
"description": "A Zero-dependency TypeScript/JavaScript port of numpy-financial",
"author": "Luciano Mammino <no@spam.com> (https://loige.co)",
"version": "0.2.4",
"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": ">=18"
},
"files": ["dist", "src"],
"scripts": {
"build:ts": "dts build",
"build:docs": "typedoc --out docs/ src/",
"lint:biome": "biome lint . && biome format .",
"lint:ts": "tsc --noEmit --incremental false --diagnostics",
"test:node": "c8 --reporter lcov tsx test/*.test.ts",
"test:deno": "deno run --allow-env --allow-read --allow-run npm:poku --parallel test/*.test.ts",
"test:bun": "bunx poku --parallel test/*.test.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/jest": "^29.5.12",
"c8": "^10.1.2",
"dts-cli": "^2.0.4",
"poku": "^2.1.0",
"tsx": "^4.16.2",
"typedoc": "^0.25.9",
"typescript": "^5.3.3"
},
"keywords": [
"financial",
"numpy",
"numpy-financial",
"mortgage",
"fv",
"pmt",
"nper",
"ipmt",
"ppmt",
"pv",
"rate",
"irr",
"npv",
"mirr"
],
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}