meridianalgo-js
Version:
Advanced machine learning algorithms for financial prediction and data analysis with ultra-precision capabilities
97 lines • 3.1 kB
JSON
{
"name": "meridianalgo-js",
"version": "2.0.0",
"description": "Advanced machine learning algorithms for financial prediction and data analysis with ultra-precision capabilities",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "npm run build:watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "echo 'Tests temporarily disabled for v2.0.0 release'",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"docs": "typedoc src/index.ts --out docs",
"docs:serve": "npx http-server docs -p 8080",
"clean": "rimraf dist coverage docs",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run build",
"example:basic": "node examples/basic-prediction.js",
"example:advanced": "node examples/advanced-features.js",
"example:realtime": "node examples/realtime-analysis.js",
"example:portfolio": "node examples/portfolio-optimization.js",
"example:backtesting": "node examples/backtesting.js",
"benchmark": "node benchmarks/performance.js",
"validate": "npm run lint && npm run format:check && npm run test:ci"
},
"keywords": [
"machine-learning",
"financial-prediction",
"algorithmic-trading",
"technical-analysis",
"ultra-precision",
"feature-engineering",
"time-series",
"prediction",
"analytics",
"trading-algorithms",
"market-analysis",
"ai",
"deep-learning",
"neural-networks",
"ensemble-methods"
],
"author": "MeridianAlgo Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/meridianalgo/meridianalgo-js.git"
},
"bugs": {
"url": "https://github.com/meridianalgo/meridianalgo-js/issues"
},
"homepage": "https://github.com/meridianalgo/meridianalgo-js#readme",
"files": [
"dist",
"examples",
"README.md",
"LICENSE"
],
"dependencies": {
"ml-matrix": "^6.10.4",
"ml-regression": "^5.0.0",
"simple-statistics": "^7.8.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"rollup": "^3.29.4",
"@rollup/plugin-terser": "^0.4.3",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
}
}