UNPKG

ml-logistic-regression

Version:
61 lines (60 loc) 1.46 kB
{ "name": "ml-logistic-regression", "version": "2.0.0", "description": "Logistic regression", "main": "lib/logreg.js", "module": "src/logreg.js", "files": [ "lib", "src" ], "scripts": { "eslint": "eslint src", "eslint-fix": "npm run eslint -- --fix", "prepublishOnly": "rollup -c", "test": "npm run test-coverage && npm run eslint", "test-coverage": "jest --coverage", "test-only": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/mljs/logistic-regression.git" }, "keywords": [ "machine learning", "logistic regression", "classification", "classifier" ], "author": "jajoe", "license": "MIT", "bugs": { "url": "https://github.com/mljs/logistic-regression/issues" }, "homepage": "https://github.com/mljs/logistic-regression#readme", "jest": { "testEnvironment": "node" }, "dependencies": { "ml-matrix": "^6.5.0" }, "devDependencies": { "@babel/plugin-transform-modules-commonjs": "^7.9.6", "@types/jest": "^25.2.1", "eslint": "^6.8.0", "eslint-config-cheminfo": "^3.0.0", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jest": "^23.8.2", "eslint-plugin-prettier": "^3.1.3", "jest": "^25.5.4", "prettier": "^2.0.5", "rollup": "^2.7.6" }, "prettier": { "arrowParens": "always", "semi": true, "singleQuote": true, "tabWidth": 2, "trailingComma": "all" } }