Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ml-levenberg-marquardt

Package Overview
Dependencies
Maintainers
7
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ml-levenberg-marquardt - npm Package Compare versions

Comparing version 1.0.4 to 2.0.0

12

History.md

@@ -1,2 +0,2 @@

## [1.0.4](https://github.com/mljs/levenberg-marquardt/compare/v1.0.3...v1.0.4) (2019-05-09)
# [2.0.0](https://github.com/mljs/levenberg-marquardt/compare/v1.0.3...v2.0.0) (2019-06-29)

@@ -10,3 +10,13 @@

### chore
* update dependencies and remove support for Node.js 6 ([5f897cb](https://github.com/mljs/levenberg-marquardt/commit/5f897cb))
### BREAKING CHANGES
* Node.js 6 is no longer supported.
<a name="1.0.3"></a>

@@ -13,0 +23,0 @@ ## [1.0.3](https://github.com/mljs/levenberg-marquardt/compare/v1.0.2...v1.0.3) (2018-02-07)

28

package.json
{
"name": "ml-levenberg-marquardt",
"version": "1.0.4",
"version": "2.0.0",
"description": "Curve fitting method in javascript",

@@ -8,3 +8,2 @@ "main": "./lib/index.js",

"files": [
"runkit.js",
"src",

@@ -14,9 +13,9 @@ "lib"

"scripts": {
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepare": "rollup -c",
"test": "npm run test-only && npm run eslint",
"test-coverage": "npm run test-only -- --coverage",
"test-only": "jest",
"test-travis": "npm run test-coverage && npm run eslint"
"prepublishOnly": "npm run compile",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},

@@ -41,17 +40,16 @@ "repository": {

},
"runkitExampleFilename": "./runkit.js",
"homepage": "https://github.com/mljs/levenberg-marquardt#readme",
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint": "^6.0.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.7.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0",
"jest-matcher-deep-close-to": "^1.3.0",
"rollup": "^1.10.0"
"rollup": "^1.16.3"
},
"dependencies": {
"ml-matrix": "^5.3.0"
"ml-matrix": "^6.1.2"
},

@@ -58,0 +56,0 @@ "config": {

@@ -6,10 +6,9 @@ # levenberg-marquardt

[![Test coverage][codecov-image]][codecov-url]
[![David deps][david-image]][david-url]
[![npm download][download-image]][download-url]
Curve fitting method in javascript
Curve fitting method in javascript.
## Installation
`$ npm install ml-levenberg-marquardt`
`$ npm i ml-levenberg-marquardt`

@@ -52,6 +51,6 @@ ## [API Documentation](https://mljs.github.io/levenberg-marquardt/)

let minValues = [
/* a_min, b_min, c_min, ... */
/* a_min, b_min, c_min, ... */
];
let maxValues = [
/* a_max, b_max, c_max, ... */
/* a_max, b_max, c_max, ... */
];

@@ -84,5 +83,3 @@

[codecov-url]: https://codecov.io/gh/mljs/levenberg-marquardt
[david-image]: https://img.shields.io/david/mljs/levenberg-marquardt.svg?style=flat-square
[david-url]: https://david-dm.org/mljs/levenberg-marquardt
[download-image]: https://img.shields.io/npm/dm/ml-levenberg-marquardt.svg?style=flat-square
[download-url]: https://npmjs.org/package/ml-levenberg-marquardt
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc