-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"name": "alphacate",
"version": "0.4.0",
"description": "Toolkit with various indicators and oscillators for the technical stock analysis",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text-summary ./node_modules/mocha/bin/mocha ./tests.js",
"coverage": "nyc --reporter=html --reporter=text ./node_modules/mocha/bin/mocha -- ./tests.js"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"underscore": "1.8.x",
"bankers-rounding": "0.x",
"convert-hrtime": "3.x"
},
"devDependencies": {
"mocha": "6.2.x",
"chai": "4.0.x",
"chai-fs": "1.0.x",
"nyc": "15.0.x"
},
"keywords": [
"average-true-range",
"linearly-weighted-moving-average",
"moving-average-convergence-divergence",
"simple-moving-average",
"exponential-moving-average",
"stochastic-oscillator",
"bollinger-bands",
"on-balance-volume",
"relative-strength-index",
"weighted-moving-average",
"rate-of-change",
"money-flow-index",
"standard-deviation",
"fintech",
"financial-technology",
"stock",
"math",
"technical-analysis",
"finance",
"invest",
"trading",
"indicator",
"oscillator",
"algorithmic",
"nyse",
"quant"
],
"repository": {
"type": "git",
"url": "https://github.com/codeplayr/alphacate.git"
},
"author": "Lukas B",
"license": "MIT"
}