-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.52 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.52 KB
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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@captor/openseries-ts",
"version": "1.0.1",
"type": "module",
"description": "Tools for analyzing financial timeseries. TypeScript port of the Python openseries package.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src scripts tests",
"lint:fix": "eslint src scripts tests --fix",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"report": "tsx scripts/report.ts",
"report:iris": "tsx scripts/report.ts --iris",
"report:captor": "tsx scripts/report.ts --captor",
"docs": "node -e \"require('fs').rmSync('docs',{recursive:true,force:true})\" && typedoc && node -e \"require('fs').writeFileSync('docs/.nojekyll','')\"",
"plot": "tsx scripts/plot.ts",
"plot:iris": "tsx scripts/plot.ts --iris",
"plot:captor": "tsx scripts/plot.ts",
"plot:drawdown": "tsx scripts/plot.ts --drawdown",
"efficient-frontier": "tsx scripts/efficient-frontier.ts",
"compare-metrics": "tsx scripts/compare-metrics.ts"
},
"keywords": [
"finance",
"fintech",
"timeseries",
"investment",
"risk",
"volatility",
"portfolio"
],
"author": "Captor Fund Management AB",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/CaptorAB/openseries-ts.git"
},
"homepage": "https://captorab.github.io/openseries-ts/",
"bugs": "https://github.com/CaptorAB/openseries-ts/issues",
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-istanbul": "^4.0.18",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.3",
"typescript": "^5.3.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"date-holidays": "^3.26.8",
"open": "^8.4.0"
}
}