-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
108 lines (108 loc) · 2.98 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
{
"name": "ml",
"version": "8.0.0",
"description": "Machine learning tools",
"main": "src/index.js",
"scripts": {
"build": "cheminfo-build --root ML",
"compile": "rollup -c",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "vitest run --coverage"
},
"files": [
"src",
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/mljs/ml.git"
},
"keywords": [
"machine",
"learning",
"data",
"mining",
"datamining"
],
"author": "Michaël Zasso",
"contributors": [
"Miguel Asencio <[email protected]> (https://github.com/maasencioh)",
"Jefferson Hernández"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/ml/issues"
},
"homepage": "https://github.com/mljs/ml",
"dependencies": {
"binary-search": "^1.3.6",
"ml-array-max": "^1.2.4",
"ml-array-mean": "^1.1.6",
"ml-array-median": "^1.1.6",
"ml-array-min": "^1.2.3",
"ml-array-mode": "^1.1.5",
"ml-array-normed": "^1.3.7",
"ml-array-rescale": "^1.3.7",
"ml-array-sequential-fill": "^1.1.8",
"ml-array-standard-deviation": "^1.1.8",
"ml-array-sum": "^1.1.6",
"ml-array-variance": "^1.1.8",
"ml-array-xy-centroids-merge": "^1.0.2",
"ml-array-xy-covariance": "^0.2.1",
"ml-array-xy-equally-spaced": "^1.2.1",
"ml-array-xy-filter-x": "1.0.2",
"ml-array-xy-max-merge": "^1.0.2",
"ml-array-xy-max-y": "^1.0.2",
"ml-array-xy-sort-x": "^1.0.2",
"ml-array-xy-weighted-merge": "^1.0.2",
"ml-arrayxy-closestx": "^2.0.2",
"ml-arrayxy-uniquex": "^1.0.2",
"ml-bit-array": "^1.0.0",
"ml-cart": "^2.1.1",
"ml-confusion-matrix": "^2.0.0",
"ml-cross-validation": "^1.3.0",
"ml-distance": "^4.0.1",
"ml-distance-matrix": "^2.0.1",
"ml-fcnnls": "^3.0.0",
"ml-fnn": "^5.0.0",
"ml-gsd": "^12.1.8",
"ml-hash-table": "^1.0.0",
"ml-hclust": "^3.1.0",
"ml-kernel": "^3.0.0",
"ml-kmeans": "^6.0.0",
"ml-knn": "^3.0.0",
"ml-levenberg-marquardt": "^4.1.3",
"ml-matrix": "^6.12.0",
"ml-naivebayes": "^4.0.0",
"ml-ngmca": "^1.0.0",
"ml-pad-array": "^2.0.0",
"ml-pca": "^4.1.1",
"ml-performance": "^0.2.0",
"ml-pls": "^4.3.2",
"ml-random": "^2.0.0",
"ml-random-forest": "^2.1.0",
"ml-regression": "^6.2.0",
"ml-savitzky-golay": "^5.0.0",
"ml-som": "^0.0.6",
"ml-sparse-matrix": "^2.1.0",
"ml-xsadd": "^3.0.1",
"num-sort": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@vitest/coverage-v8": "^2.1.3",
"cheminfo-build": "^1.2.0",
"eslint": "^9.12.0",
"eslint-config-cheminfo": "^12.0.1",
"esm": "^3.2.25",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"vitest": "^2.1.3"
}
}