-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 959 Bytes
/
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
{
"name": "maximumsubarraydfs",
"version": "1.0.0",
"description": "This project designed to analyze historical OHLC (Open-High-Low-Close) data of financial markets and predict potential breakout patterns. It utilizes the Maximum Subarray algorithm with Depth-First Search (DFS) to identify periods of significant price movement.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Maximum Subarray",
"Depth-First Search",
"Financial Markets",
"Crypto Prediction"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cdw1p/MaximumSubarrayDFS.git"
},
"author": "cdw1p",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdw1p/MaximumSubarrayDFS/issues"
},
"homepage": "https://github.com/cdw1p/MaximumSubarrayDFS#readme",
"dependencies": {
"ccxt": "^4.2.85",
"maximumsubarraydfs": "^1.0.0"
}
}