{
  "name": "ipa-ml-random-forest",
  "version": "2.0.4",
  "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/wasimabbasbangash/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/wasimabbasbangash/random-forest/issues"
  },
  "homepage": "https://github.com/wasimabbasbangash/random-forest#readme",
  "devDependencies": {
    "@babel/plugin-transform-modules-commonjs": "^7.12.1",
    "benchmark": "^2.1.4",
    "eslint": "^7.11.0",
    "eslint-config-cheminfo": "^5.2.2",
    "jest": "^26.5.3",
    "ml-dataset-iris": "^1.1.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.1.2",
    "rollup": "^2.32.0"
  },
  "dependencies": {
    "ml-array-mean": "^1.1.4",
    "ml-array-median": "^1.1.4",
    "ml-cart": "^2.0.2",
    "ml-matrix": "^6.5.3",
    "random-js": "^2.1.0"
  },
  "prettier": {
    "arrowParens": "always",
    "semi": true,
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "all"
  }
}
