This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
113 lines (113 loc) · 3.12 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "modelscript",
"description": "modelscript is a javascript module with simple and efficient tools for data mining and data analysis in JavaScript. When modelscript used with ML.js, pandas-js, and numjs, you're left with the equivalent R/Python tool set in JavaScript.",
"version": "2.4.0",
"commonjs": "build/modelscript.cjs.js",
"esm": "build/modelscript.esm.js",
"main": "index.mjs",
"browser": "build/modelscript.umd.js",
"modules.root": "src",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"csvtojson": "^1.1.9",
"fs-extra": "^5.0.0",
"js-grid-search-lite": "^1.3.3",
"lodash.range": "^3.2.0",
"lodash.rangeright": "^4.2.0",
"ml": "^3.2.0",
"ml-cart": "^1.0.8",
"ml-logistic-regression": "^1.0.2",
"ml-matrix": "^5.1.1",
"ml-naivebayes": "^3.0.0",
"ml-pca": "^2.1.0",
"ml-random-forest": "^1.0.3",
"ml-regression-multivariate-linear": "^1.2.0",
"node-fpgrowth": "^1.2.1",
"object.values": "^1.0.4",
"probability-distributions": "^0.9.1",
"random-js": "^1.0.8",
"request": "^2.87.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@repetere/esdoc-inject-gtm-plugin": "^0.1.0",
"@std/esm": "^0.26.0",
"natural": "^0.5.6",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.0.2",
"coveralls": "^3.0.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-publish-markdown-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"esm": "^3.2.25",
"istanbul": "^0.4.5",
"matplotnode": "^0.1.3",
"mocha": "^5.2.0",
"numjs": "^0.16.0",
"nyc": "^12.0.2",
"pandas-js": "^0.2.4",
"rollup": "^0.63.5",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^4.1.3",
"sinon-chai": "^2.11.0"
},
"scripts": {
"test": "nyc mocha -r @std/esm \"test/**/*.{js,mjs}\"",
"doc": "esdoc",
"build": "rollup -c && esdoc",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"bugs": {
"url": "https://github.com/repetere/modelscript/issues"
},
"author": {
"name": "Yaw Joseph Etse",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/repetere/modelscript.git"
},
"homepage": "https://repetere.github.io/modelscript",
"keywords": [
"Machine Learning",
"data science",
"scaling",
"feature scaling",
"feature engineering",
"scalars",
"scikit-learn",
"sk-learn",
"ml",
"pre-processing",
"data preparation",
"pandas",
"numpy"
],
"@std/esm": "cjs",
"nyc": {
"extension": [
".mjs"
],
"include": [
"src/**/*.mjs"
],
"require": [
"@std/esm"
]
}
}