UNPKG

ml

Version:

Machine learning tools

109 lines (108 loc) 3.05 kB
{ "name": "ml", "version": "8.0.0", "description": "Machine learning tools", "main": "src/index.js", "scripts": { "build": "cheminfo-build --root ML", "compile": "rollup -c", "eslint": "eslint src --cache", "eslint-fix": "npm run eslint -- --fix", "prepack": "npm run compile", "prettier": "prettier --check src", "prettier-write": "prettier --write src", "test": "npm run test-only && npm run eslint && npm run prettier", "test-only": "vitest run --coverage" }, "files": [ "src", "dist", "lib" ], "repository": { "type": "git", "url": "https://github.com/mljs/ml.git" }, "keywords": [ "machine", "learning", "data", "mining", "datamining" ], "author": "Michaël Zasso", "contributors": [ "Miguel Asencio <maasencioh@gmail.com> (https://github.com/maasencioh)", "Jefferson Hernández" ], "license": "MIT", "bugs": { "url": "https://github.com/mljs/ml/issues" }, "homepage": "https://github.com/mljs/ml", "dependencies": { "binary-search": "^1.3.6", "ml-array-max": "^1.2.4", "ml-array-mean": "^1.1.6", "ml-array-median": "^1.1.6", "ml-array-min": "^1.2.3", "ml-array-mode": "^1.1.5", "ml-array-normed": "^1.3.7", "ml-array-rescale": "^1.3.7", "ml-array-sequential-fill": "^1.1.8", "ml-array-standard-deviation": "^1.1.8", "ml-array-sum": "^1.1.6", "ml-array-variance": "^1.1.8", "ml-array-xy-centroids-merge": "^1.0.2", "ml-array-xy-covariance": "^0.2.1", "ml-array-xy-equally-spaced": "^1.2.1", "ml-array-xy-filter-x": "1.0.2", "ml-array-xy-max-merge": "^1.0.2", "ml-array-xy-max-y": "^1.0.2", "ml-array-xy-sort-x": "^1.0.2", "ml-array-xy-weighted-merge": "^1.0.2", "ml-arrayxy-closestx": "^2.0.2", "ml-arrayxy-uniquex": "^1.0.2", "ml-bit-array": "^1.0.0", "ml-cart": "^2.1.1", "ml-confusion-matrix": "^2.0.0", "ml-cross-validation": "^1.3.0", "ml-distance": "^4.0.1", "ml-distance-matrix": "^2.0.1", "ml-fcnnls": "^3.0.0", "ml-fnn": "^5.0.0", "ml-gsd": "^12.1.8", "ml-hash-table": "^1.0.0", "ml-hclust": "^3.1.0", "ml-kernel": "^3.0.0", "ml-kmeans": "^6.0.0", "ml-knn": "^3.0.0", "ml-levenberg-marquardt": "^4.1.3", "ml-matrix": "^6.12.0", "ml-naivebayes": "^4.0.0", "ml-ngmca": "^1.0.0", "ml-pad-array": "^2.0.0", "ml-pca": "^4.1.1", "ml-performance": "^0.2.0", "ml-pls": "^4.3.2", "ml-random": "^2.0.0", "ml-random-forest": "^2.1.0", "ml-regression": "^6.2.0", "ml-savitzky-golay": "^5.0.0", "ml-som": "^0.0.6", "ml-sparse-matrix": "^2.1.0", "ml-xsadd": "^3.0.1", "num-sort": "^3.0.0" }, "devDependencies": { "@babel/plugin-transform-modules-commonjs": "^7.25.7", "@vitest/coverage-v8": "^2.1.3", "cheminfo-build": "^1.2.0", "eslint": "^9.12.0", "eslint-config-cheminfo": "^12.0.1", "esm": "^3.2.25", "prettier": "^3.3.3", "rollup": "^4.24.0", "vitest": "^2.1.3" } }