@fvictorio/newton-raphson-method
Version:
Find zeros of a function using the Newton-Raphson method
47 lines (46 loc) • 904 B
JSON
{
"name": "@fvictorio/newton-raphson-method",
"version": "1.0.5",
"description": "Find zeros of a function using the Newton-Raphson method",
"main": "lib/index.js",
"files": [
"/lib/**/*"
],
"author": {
"name": "Ricky Reusser"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scijs/newton-raphson-method.git"
},
"scripts": {
"prepublish": "tsc",
"test": "semistandard && mocha"
},
"keywords": [
"roots",
"zeros",
"newton-raphson",
"scijs"
],
"devDependencies": {
"@types/big.js": "^4.0.5",
"almost-equal": "^1.1.0",
"chai": "^3.5.0",
"is-number": "^2.1.0",
"mocha": "^2.5.3",
"semistandard": "^8.0.0",
"typescript": "^3.7.3"
},
"dependencies": {
"big.js": "^5.2.2"
},
"semistandard": {
"globals": [
"describe",
"it",
"beforeEach"
]
}
}