ml-random-forest
Version:
Random forest for classification and regression
69 lines (68 loc) • 1.64 kB
JSON
{
"name": "ml-random-forest",
"version": "2.1.0",
"description": "Random forest for classification and regression",
"main": "random-forest.js",
"module": "src/index.js",
"files": [
"src",
"random-forest.js",
"types"
],
"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "npm run compile",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/random-forest.git"
},
"keywords": [
"random",
"forest",
"ensemble",
"machine",
"learning",
"data",
"mining",
"datamining"
],
"author": "Jefferson Hernandez",
"license": "MIT",
"types": "types/types.d.ts",
"bugs": {
"url": "https://github.com/mljs/random-forest/issues"
},
"homepage": "https://github.com/mljs/random-forest#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"benchmark": "^2.1.4",
"eslint": "^8.7.0",
"eslint-config-cheminfo": "^7.2.1",
"jest": "^27.4.7",
"ml-dataset-iris": "^1.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rollup": "^2.64.0"
},
"dependencies": {
"ml-array-mean": "^1.1.5",
"ml-array-median": "^1.1.5",
"ml-array-mode": "^1.1.4",
"ml-cart": "^2.1.1",
"ml-matrix": "^6.8.2",
"random-js": "^2.1.0"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
}