UNPKG

trading-signals

Version:

Technical indicators to run technical analysis with JavaScript / TypeScript.

68 lines (67 loc) 1.74 kB
{ "name": "trading-signals", "version": "8.2.0", "description": "Technical indicators to run technical analysis with JavaScript / TypeScript.", "keywords": [ "adx", "algorithmic", "analysis", "atr", "average", "bollinger", "dema", "dma", "ema", "exponential-moving-average", "indicator", "macd", "math", "moving-average", "roc", "rsi", "signals", "simple-moving-average", "sma", "smma", "technical", "technical-indicators", "technical-overlays", "trading" ], "homepage": "https://bennycode.com/trading-signals", "bugs": { "url": "https://github.com/bennycode/trading-signals/issues" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/bennycode/trading-signals.git", "directory": "packages/trading-signals" }, "files": [ "dist", "!dist/start", "!dist/test", "!dist/**/*.test.*" ], "type": "module", "types": "dist/index.d.ts", "exports": "./dist/index.js", "scripts": { "build": "tsc -p tsconfig.build.json", "clean": "rimraf coverage dist", "dist": "npm run clean && npm run build", "fix": "npm run fix:code && npm run fix:other", "fix:code": "oxlint . --fix || true", "fix:other": "oxfmt", "lint": "npm run lint:code && npm run lint:other", "lint:code": "oxlint .", "lint:other": "oxfmt --list-different", "start": "tsx ./src/start/demo.ts", "test": "npm run test:types && npm run test:units -- --coverage", "test:types": "tsc --noEmit", "test:units": "vitest run --passWithNoTests", "test:units:watch": "vitest --watch" }, "gitHead": "0c89fcdbbfb72b3915ed6d3252bd4daa5da4d003" }