ml-levenberg-marquardt
Version:
Curve fitting method in javascript
63 lines (62 loc) • 1.68 kB
JSON
{
"name": "ml-levenberg-marquardt",
"version": "5.0.1",
"description": "Curve fitting method in javascript",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"files": [
"src",
"lib"
],
"scripts": {
"check-types": "tsc --noEmit",
"check-types:watch": "node --run check-types -- --watch",
"clean": "rimraf lib",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest --run --coverage",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/levenberg-marquardt.git"
},
"keywords": [
"machine",
"learning",
"data",
"mining",
"datamining",
"levenberg",
"marquardt"
],
"author": "Miguel Asencio <maasencioh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/levenberg-marquardt/issues"
},
"homepage": "https://github.com/mljs/levenberg-marquardt#readme",
"devDependencies": {
"@types/node": "^24.0.1",
"@vitest/coverage-v8": "^4.1.4",
"@zakodium/tsconfig": "^1.0.5",
"eslint": "^9.28.0",
"eslint-config-cheminfo-typescript": "^18.0.1",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^5.8.3",
"vitest": "^4.1.4"
},
"dependencies": {
"is-any-array": "^3.0.0",
"ml-matrix": "^6.12.2"
}
}