-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.67 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.67 KB
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
{
"author": "Jacob K.F. Bogers <jkfbogers@gmail.com>",
"browser": "./dist/web.esm.mjs",
"bugs": {
"url": "https://github.com/R-js/libRmath.js/issues"
},
"contributors": [
{
"email": "richarddmorey@gmail.com",
"name": "Richard D. Morey"
}
],
"description": "Javascript Implementation of Statistical R standalone library rnmath",
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.1.0",
"@types/jest": "29.2.2",
"@types/node": "24.3.0",
"@vitest/coverage-v8": "3.2.4",
"acorn": "8.11.3",
"astring": "1.9.0",
"ms": "3.0.0-canary.1",
"rollup": "3.6.0",
"tsx": "4.20.4",
"typescript": "5.4.5",
"vite": "7.1.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"engines": {
"node": ">=v22.12.0"
},
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/commonjs/index.cjs"
},
"files": [
"dist",
"dsignrank-01.png",
"ptukey-01.png",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"homepage": "https://r.js.org",
"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"
],
"license": "SEE LICENSE IN LICENSE.txt",
"name": "lib-r-math.js",
"repository": {
"type": "git",
"url": "https://github.com/R-js/libRmath.js.git"
},
"scripts": {
"build": "tsx scripts/build.ts",
"postbuild": "node --trace-warnings scripts/rollup.build.mjs",
"prepublishOnly": "npm run build",
"test": "vitest --run"
},
"sideEffects": false,
"type": "module",
"types": "./dist/types/index.d.ts",
"version": "4.0.0"
}