-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "@8hobbies/irr",
"version": "3.0.5",
"description": "Computing the internal rate of return and net present value of a series of cash flows.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!/dist/**.test.d.ts",
"!/dist/**.test.js",
"!/dist/vitest.config.d.ts",
"!/dist/vitest.config.js"
],
"scripts": {
"clean": "rimraf dist/",
"compile": "tsc --project tsconfig.json && tsc --project tsconfig.test.json",
"coverage": "vitest --run --coverage",
"doc": "typedoc",
"format": "eslint --fix *.ts *.mjs && prettier . .gitlab-ci.yml --write",
"lint": "eslint *.ts *.mjs && prettier . .gitlab-ci.yml --check",
"prepack": "npm run clean && npm run compile",
"test": "npm run compile && npm run coverage",
"test-all": "npm run compile && npm run lint && npm run test && npm run doc"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/8hobbies/irr.git"
},
"keywords": [
"finance",
"irr",
"npv"
],
"author": "8 Hobbies, LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://gitlab.com/8hobbies/irr/issues"
},
"homepage": "https://irr.8hob.io",
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "^6.0.0",
"@8hobbies/typedoc-plugin-404": "^3.1.0",
"@8hobbies/typedoc-plugin-plausible": "^2.1.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.5",
"typescript": "~5.7.2",
"vitest": "^2.1.6"
},
"dependencies": {
"ml-matrix": "^6.12.0"
}
}