decentralized-single-shot-ridge-regression
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -6,2 +6,9 @@ { | ||
}, | ||
"coinstac": { | ||
"description": "Decentralized ridge regression.", | ||
"name": "Single-Shot Ridge Regression", | ||
"tags": [ | ||
"regression" | ||
] | ||
}, | ||
"contributors": [ | ||
@@ -16,15 +23,15 @@ "Cory Reed <swashcap@gmail.com>", | ||
"freesurfer-parser": "0.0.2", | ||
"lodash": "^4.16.6", | ||
"lodash": "^4.17.2", | ||
"numeric": "^1.2.6" | ||
}, | ||
"devDependencies": { | ||
"coinstac-simulator": "^2.2.0", | ||
"coinstac-simulator": "^2.2.2", | ||
"cross-env": "^3.1.3", | ||
"eslint": "^3.8.1", | ||
"eslint-config-airbnb": "^12.0.0", | ||
"eslint-plugin-import": "^2.0.1", | ||
"eslint": "^3.11.1", | ||
"eslint-config-airbnb": "^13.0.0", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-jsx-a11y": "^2.2.3", | ||
"eslint-plugin-react": "^6.4.1", | ||
"eslint-plugin-react": "^6.8.0", | ||
"pre-commit": "^1.1.3", | ||
"tape": "^4.6.2" | ||
"tape": "^4.6.3" | ||
}, | ||
@@ -51,6 +58,11 @@ "homepage": "https://github.com/MRN-Code/decentralized-single-shot-ridge-regression#readme", | ||
"lint": "eslint src test", | ||
"postversion": "git push origin master --tags && npm publish", | ||
"preversion": "git checkout master && git pull && npm ls", | ||
"publish-major": "npm run preversion && npm version major && npm run postversion", | ||
"publish-minor": "npm run preversion && npm version minor && npm run postversion", | ||
"publish-patch": "npm run preversion && npm version patch && npm run postversion", | ||
"simulate": "cross-env BLUEBIRD_WARNINGS=0 coinstac-simulator -d test/declaration.js", | ||
"test": "node test/index.js" | ||
}, | ||
"version": "1.1.0" | ||
"version": "1.1.1" | ||
} |
@@ -126,3 +126,3 @@ 'use strict'; | ||
// Not all user results contain betas. Return early. | ||
if (userResults.some(userResult => !((userResult || {}).data || {}).betaVector)) { | ||
if (userResults.some(userResult => !get(userResult, 'data.betaVector'))) { | ||
return {}; | ||
@@ -129,0 +129,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9101
Updatedlodash@^4.17.2