-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "mdatools",
"version": "1.4.0",
"private": false,
"type": "module",
"description": "Tools and methods for statistics and multivariate data analysis.",
"scripts": {
"test": "mocha",
"speedtest": "node ./test/tests-speed.js"
},
"exports": {
"./arrays": "./src/arrays/index.js",
"./decomp": "./src/decomp/index.js",
"./distributions": "./src/distributions/index.js",
"./misc": "./src/misc/index.js",
"./models": "./src/models/index.js",
"./prep": "./src/prep/index.js",
"./stat": "./src/stat/index.js",
"./tests": "./src/tests/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/svkucheryavski/mdatools-js/"
},
"keywords": [
"statistics"
],
"author": "Sergey Kucheryavskiy <svkucheryavski@gmail.com> (https://mda.tools)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svkucheryavski/mdatools-js/issues"
},
"homepage": "https://github.com/svkucheryavski/mdatools-js/",
"devDependencies": {
"chai": "^4.x",
"chai-almost": "^1.x",
"mocha": "^10.x"
}
}