-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
51
52
53
54
{
"name": "topsis",
"version": "1.3.1",
"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"
}
}