-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
86 lines (86 loc) · 2.09 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
{
"name": "ml-matrix",
"version": "6.12.0",
"description": "Matrix manipulation and computation library",
"main": "matrix.js",
"module": "src/index.js",
"jsdelivr": "matrix.umd.js",
"unpkg": "matrix.umd.js",
"types": "matrix.d.ts",
"exports": {
".": {
"types": "./matrix.d.ts",
"require": "./matrix.js",
"default": "./matrix.mjs"
}
},
"sideEffects": false,
"files": [
"matrix.d.ts",
"matrix.js",
"matrix.mjs",
"matrix.umd.js",
"src"
],
"scripts": {
"build-esm-facade": "node tools/build-esm-facade.mjs",
"compile": "rollup -c",
"eslint": "eslint src testUtils.js",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile && npm run build-esm-facade",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/matrix.git"
},
"keywords": [
"matrix",
"decomposition",
"SVD",
"singular",
"value",
"EVD",
"eigenvalue",
"LU",
"Qr",
"Cholesky",
"data",
"mining",
"datamining",
"machine",
"learning"
],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/matrix/issues"
},
"homepage": "https://github.com/mljs/matrix",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-v8": "^0.34.6",
"benchmark": "^2.1.4",
"csv-parse": "^5.5.2",
"eslint": "^8.51.0",
"eslint-config-cheminfo": "^9.0.2",
"jest-matcher-deep-close-to": "^3.0.2",
"mathjs": "^11.11.2",
"ml-dataset-iris": "^1.2.1",
"numeric": "^1.2.6",
"prettier": "^3.0.3",
"pretty-hrtime": "^1.0.3",
"rollup": "^4.1.4",
"vitest": "^0.34.6"
},
"dependencies": {
"is-any-array": "^2.0.1",
"ml-array-rescale": "^1.3.7"
}
}