-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.54 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.54 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "meridianalgo",
"version": "2.6.0",
"description": "Professional-grade quantitative finance framework for JavaScript/TypeScript - algorithmic trading, backtesting, risk management, and portfolio optimization",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"meridianalgo": "dist/cli/index.js"
},
"keywords": [
"quantitative-finance",
"algorithmic-trading",
"trading",
"backtesting",
"technical-indicators",
"technical-analysis",
"portfolio-optimization",
"risk-management",
"machine-learning",
"typescript",
"quant",
"finance",
"trading-strategies",
"statistical-arbitrage",
"mean-reversion",
"momentum-trading",
"market-microstructure",
"options-pricing",
"derivatives",
"financial-modeling"
],
"author": "Meridian Algorithmic Research Team",
"license": "MIT",
"homepage": "https://github.com/MeridianAlgo/Javascript-Packages#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MeridianAlgo/Javascript-Packages.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bugs": {
"url": "https://github.com/MeridianAlgo/Javascript-Packages/issues"
},
"scripts": {
"build": "rimraf dist && tsc && tsc-alias",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"clean": "rimraf dist node_modules",
"example:basic": "ts-node examples/basic-backtest.ts",
"example:advanced": "ts-node examples/advanced-features.ts",
"example:utils": "ts-node examples/utils-demo.ts",
"example:quant": "ts-node examples/quantitative-strategies.ts",
"example:risk": "ts-node examples/risk-management.ts"
},
"dependencies": {
"commander": "^11.1.0",
"tslib": "^2.6.2",
"yahoo-finance2": "^2.11.3"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"directories": {
"doc": "docs",
"example": "examples"
},
"type": "commonjs"
}