enhancedmath
Version:
This package contains some enhanced mathematical operations
71 lines (70 loc) • 1.9 kB
JSON
{
"name": "enhancedmath",
"version": "3.0.3",
"description": "This package contains some enhanced mathematical operations",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "npm run eslint && npm run typecheck",
"test": "vitest --ui",
"test:coverage": "vitest run --coverage",
"format": "prettier --write **/*.{js,ts} && prettier --write **/**/",
"eslint": "npx eslint --fix --ext .ts ./",
"typecheck": "tsc --noEmit",
"update-imports": "node update-imports.js"
},
"keywords": [
"math",
"probability",
"algebra",
"matrix",
"bisection",
"discriminator",
"factorial",
"fibonacci",
"combination",
"permutation",
"determinant",
"transpose",
"typescript"
],
"author": "Mout Pessemier",
"license": "ISC",
"bugs": {
"url": "https://github.com/MoutPessemier/enhancedMathJS/issues"
},
"homepage": "https://github.com/MoutPessemier/enhancedMathJS#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MoutPessemier/enhancedMathJS.git"
},
"engines": {
"node": ">=18"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@eslint/js": "^9.22.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitest/coverage-v8": "^3.0.8",
"@vitest/ui": "^3.0.8",
"eslint": "^9.22.0",
"eslint-import-resolver-typescript": "^3.8.7",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"jsdoc": "^4.0.4",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.8"
}
}