@cmike444/supply-and-demand-zones
Version:
A library for identifying supply and demand zones in candlestick data.
47 lines (46 loc) • 1.41 kB
JSON
{
"name": "@cmike444/supply-and-demand-zones",
"version": "1.3.1",
"description": "A library for identifying supply and demand zones in candlestick data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"identify-zones": "ts-node scripts/identifyZonesFromFile.ts",
"convert-to-candle": "ts-node scripts/convertToCandle.ts",
"fetch-candles": "npx ts-node scripts/fetch_candles.ts",
"visualize-zones": "npx ts-node scripts/visualizeZones.ts",
"visualize-tests": "npx ts-node scripts/visualizeTestCases.ts",
"version": "git add . && git commit -m \"Release v$npm_package_version\" && git tag v$npm_package_version && git push --follow-tags && gh release create v$npm_package_version --title \"v$npm_package_version\" --generate-notes"
},
"keywords": [
"supply",
"demand",
"zones",
"candlestick",
"trading"
],
"author": "Christopher Mikelson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cmike444/SupplyAndDemand.git"
},
"private": false,
"dependencies": {
"hf-types": "cmike444/hf-types"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^25.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.0.0",
"yahoo-finance2": "^3.14.0"
}
}