forked from codewithpatelo/ahp-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ahp-lite",
"version": "1.2.0",
"description": "This is a minimal and optimised implementation of AHP algorithm for multi-criteria decision-making and prescriptive analytics.",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint --ignore-path .eslintignore .",
"lint-fix": "eslint --ignore-path .eslintignore . -- --fix"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/patelotech/ahp-lite.git"
},
"keywords": [
"ahp",
"Analytic Hierarchy Process",
"saaty",
"multi-criteria",
"decision",
"making",
"multi-attribute",
"business intelligence",
"prescriptive analytics",
"operations research",
"decision science",
"analytics"
],
"author": "Patricio J. Gerpe",
"license": "MIT",
"devDependencies": {
"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"
},
"dependencies": {
"linear-algebra": "^3.1.4"
}
}