UNPKG

ml-cart

Version:
62 lines (61 loc) 1.39 kB
{ "name": "ml-cart", "version": "2.1.1", "description": "CART decision tree algorithm", "main": "cart.js", "module": "src/index.js", "files": [ "src", "cart.js" ], "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/decision-tree-cart" }, "keywords": [ "CART", "decision", "tree", "data", "mining", "datamining", "machine", "learning", "regression" ], "author": "Jefferson Hernández", "license": "MIT", "bugs": { "url": "https://github.com/mljs/decision-tree-cart/issues" }, "homepage": "https://github.com/mljs/decision-tree-cart", "devDependencies": { "@babel/plugin-transform-modules-commonjs": "^7.16.8", "eslint": "^8.6.0", "eslint-config-cheminfo": "^7.2.1", "jest": "^27.4.7", "ml-dataset-iris": "^1.2.1", "prettier": "^2.5.1", "rollup": "^2.63.0" }, "dependencies": { "ml-array-mean": "^1.1.5", "ml-matrix": "^6.8.2" }, "prettier": { "arrowParens": "always", "semi": true, "singleQuote": true, "tabWidth": 2, "trailingComma": "all" } }