stock-indicators/package.json
2025-03-31 11:20:04 +02:00

57 lines
1.2 KiB
JSON
Executable File

{
"name": "stockindicators",
"version": "0.1.0",
"description": "Toolkit with various indicators and oscillators for the technical stock analysis",
"main": "index.js",
"type": "module",
"scripts": {
"test": "cross-env DEBUG=app:* NODE_ENV=testing mocha ./tests.js",
"test:coverage": "c8 --reporter=html --reporter=text npm run test"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"underscore": "~1.9.0",
"bankers-rounding": "~0.1.0",
"convert-hrtime": "~5.0.0",
"cross-env": "~7.0.0"
},
"devDependencies": {
"mocha": "~9.2.0",
"chai": "~4.4.0",
"chai-fs": "~2.0.0",
"chai-as-promised": "~7.1.0",
"c8": "~9.1.0"
},
"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"
],
"author": "Lukas B",
"license": "MIT"
}