-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 985 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 985 Bytes
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
{
"name": "turtle",
"version": "1.0.0",
"description": "A web app to implement some of the basic decision metrics and algorithms used in the \"turtle trading\" strategy created by Richard Dennis.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node --test",
"matrix": "node scripts/runMatrix.js",
"portfolio": "node scripts/runPortfolio.js",
"benchmarks": "node scripts/runBenchmarks.js",
"hybrid": "node scripts/runHybrid.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcalfredson/turtle.git"
},
"keywords": [
"finance",
"stocks",
"trading"
],
"author": "Robert C. Alfredson",
"license": "ISC",
"bugs": {
"url": "https://github.com/rcalfredson/turtle/issues"
},
"homepage": "https://github.com/rcalfredson/turtle#readme",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"pug": "^3.0.2"
}
}