ta-math
Version:
Technical analysis library in javascript. Calculates indicators and overlays from ohlcv data
61 lines (60 loc) • 1.54 kB
JSON
{
"name": "ta-math",
"version": "1.0.49",
"description": "Technical analysis library in javascript. Calculates indicators and overlays from ohlcv data",
"main": "dist/ta-math.js",
"types": "dist/types/index.d.ts",
"module": "dist/ta-math.esm.js",
"browser": "dist/ta-math.es5.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c; yarn build:clean",
"watch": "rollup -cw",
"test": "node -r esm ./test/test.js",
"wasm": "asc src/index.ts -b dist/ta-math.wasm -O3 --runtime=half",
"ci": "npm run build && npm run test",
"cov": "nyc report --reporter=lcov",
"http": "http-server -p 1234 -c-1",
"python": "python ./test/expected.py",
"build:clean": "find dist -maxdepth 1 -name '*.d.ts' -type f -delete"
},
"devDependencies": {
"@babel/core": "7.14.5",
"@babel/preset-env": "7.14.5",
"assemblyscript": "0.19.2",
"esm": "3.2.25",
"nyc": "15.1.0",
"rollup": "2.51.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-typescript2": "0.30.0",
"typescript": "4.3.2",
"zora": "4.0.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"include": "**/ta-math**"
},
"keywords": [
"technical-indicators",
"technical-analysis",
"quantitative-finance",
"correlation-matrix",
"finance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/munrocket/ta-math.git"
},
"author": "munrocket",
"license": "MIT"
}