nyo
Version:
A matrix library for JavaScript with ability to calculate determinants, transpose, inverse, RREF and other simple matrix operations
47 lines (46 loc) • 943 B
JSON
{
"name": "nyo",
"version": "0.7.0",
"description": "A matrix library for JavaScript with ability to calculate determinants, transpose, inverse, RREF and other simple matrix operations",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "ava"
},
"keywords": [
"matrix",
"operations",
"rref",
"determinant",
"inverse",
"transpose",
"browser",
"node"
],
"author": "Abhijit Hota <abhihota025@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abhijit-hota/nyo.git"
},
"bugs": {
"url": "https://github.com/abhijit-hota/nyo/issues",
"email": "abhihota025@gmail.com"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"devDependencies": {
"ava": "3.15.0",
"eslint": "7.19.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ava": {
"files": [
"tests/*.test.js"
]
}
}