UNPKG

topsis

Version:

This is an implementation of TOPSIS algorithm for multi-criteria decision-making and prescriptive analytics.

55 lines (54 loc) 1.53 kB
{ "name": "topsis", "version": "1.3.2", "description": "This is an implementation of TOPSIS algorithm for multi-criteria decision-making and prescriptive analytics.", "main": "index.js", "scripts": { "test": "nyc mocha", "lint": "eslint --ignore-path .eslintignore .", "lint-fix": "eslint --ignore-path .eslintignore . -- --fix", "cover": "nyc mocha && nyc report --reporter=text-lcov | coveralls", "report-cover": "nyc report --reporter=text-lcov | coveralls", "clean": "nyc mocha && npm run lint -- --fix", "vul-check": "npm audit" }, "precommit": [ "lint", "test" ], "repository": { "type": "git", "url": "git+https://github.com/patelotech/topsis.git" }, "keywords": [ "topsis", "multi-criteria", "decision", "making", "multi-attribute", "business intelligence", "prescriptive analytics", "operations research", "decision science", "analytics" ], "author": "Patricio J. Gerpe", "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "chai": "^4.2.0", "coveralls": "^3.0.2", "eslint": "^5.11.1", "eslint-config-airbnb": "^17.1.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-import": "^2.7.0", "eslint-plugin-jsx-a11y": "^6.0.2", "eslint-plugin-react": "^7.4.0", "mocha": "^5.2.0", "mocha-lcov-reporter": "^1.3.0", "nyc": "^13.1.0" }, "dependencies": { "linear-algebra": "^3.1.4" } }