-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
107 lines (107 loc) · 2.69 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
{
"name": "lib-r-math.js",
"version": "2.0.2",
"description": "Javascript Implementation of Statistical R standalone library rnmath",
"keywords": [
"statistics",
"R",
"rstudio",
"r studio",
"r-studio",
"special functions",
"bessel",
"gamma",
"psigamma",
"digamma",
"trigamma",
"polygamma",
"beta",
"probability",
"densitity functions",
"quantile functions",
"binomial",
"negative binomial",
"cauchy",
"chi square sistribution",
"chi-square chisquare",
"exponential",
"f",
"snedecor's f",
"fisher–snedecor",
"geometric",
"hypergeometric",
"hyper geometric",
"logistic",
"lognormal",
"multinomial",
"normal",
"gaussian",
"poisson",
"student t",
"studentized range",
"tukey",
"uniform",
"weibull",
"wilcox",
"wilcoxon rank sum"
],
"homepage": "https://r.js.org",
"bugs": {
"url": "https://github.com/R-js/libRmath.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/R-js/libRmath.js.git"
},
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Jacob K.F. Bogers <jkfbogers@gmail.com>",
"contributors": [
{
"name": "Richard D. Morey",
"email": "richarddmorey@gmail.com"
}
],
"sideEffects": false,
"type": "module",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/commonjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"browser": "./dist/web.esm.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"dsignrank-01.png",
"ptukey-01.png",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"scripts": {
"build": "node --trace-warnings scripts/build.mjs",
"postbuild": "node --trace-warnings scripts/rollup.build.mjs",
"prepublishOnly": "npm run build",
"test": "jest --verbose"
},
"dependencies": {
"@mangos/debug": "0.0.9-rc5"
},
"devDependencies": {
"@mangos/jxpath": "1.0.13",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.1.0",
"@types/jest": "29.2.2",
"@types/node": "18.11.10",
"acorn": "8.11.3",
"escodegen": "2.1.0",
"jest": "29.3.1",
"ms": "3.0.0-canary.1",
"rollup": "3.6.0",
"ts-jest": "29.0.3",
"typescript": "4.5.2"
},
"engines": {
"node": ">=v20.4.0"
}
}