-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
204 lines (204 loc) · 7.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
{
"name": "@stdlib/random-base",
"version": "0.2.1",
"description": "Base pseudorandom number generators.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
},
"contributors": [
{
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
}
],
"main": "./lib",
"directories": {
"doc": "./docs",
"example": "./examples",
"lib": "./lib",
"test": "./test"
},
"types": "./docs/types",
"scripts": {
"test": "make test",
"test-cov": "make test-cov",
"examples": "make examples",
"benchmark": "make benchmark"
},
"homepage": "https://stdlib.io",
"repository": {
"type": "git",
"url": "git://github.com/stdlib-js/random-base.git"
},
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/random-base-arcsine": "^0.2.1",
"@stdlib/random-base-bernoulli": "^0.2.1",
"@stdlib/random-base-beta": "^0.2.1",
"@stdlib/random-base-betaprime": "^0.2.1",
"@stdlib/random-base-binomial": "^0.2.1",
"@stdlib/random-base-box-muller": "^0.2.1",
"@stdlib/random-base-cauchy": "^0.2.1",
"@stdlib/random-base-chi": "^0.2.1",
"@stdlib/random-base-chisquare": "^0.2.1",
"@stdlib/random-base-cosine": "^0.2.1",
"@stdlib/random-base-discrete-uniform": "^0.2.1",
"@stdlib/random-base-erlang": "^0.2.1",
"@stdlib/random-base-exponential": "^0.2.1",
"@stdlib/random-base-f": "^0.2.1",
"@stdlib/random-base-frechet": "^0.2.1",
"@stdlib/random-base-gamma": "^0.2.1",
"@stdlib/random-base-geometric": "^0.2.1",
"@stdlib/random-base-gumbel": "^0.2.1",
"@stdlib/random-base-hypergeometric": "^0.2.1",
"@stdlib/random-base-improved-ziggurat": "^0.2.1",
"@stdlib/random-base-invgamma": "^0.2.1",
"@stdlib/random-base-kumaraswamy": "^0.2.1",
"@stdlib/random-base-laplace": "^0.2.1",
"@stdlib/random-base-levy": "^0.2.1",
"@stdlib/random-base-logistic": "^0.2.1",
"@stdlib/random-base-lognormal": "^0.2.1",
"@stdlib/random-base-minstd": "^0.2.1",
"@stdlib/random-base-minstd-shuffle": "^0.2.1",
"@stdlib/random-base-mt19937": "^0.2.1",
"@stdlib/random-base-negative-binomial": "^0.2.1",
"@stdlib/random-base-normal": "^0.2.1",
"@stdlib/random-base-pareto-type1": "^0.2.1",
"@stdlib/random-base-poisson": "^0.2.1",
"@stdlib/random-base-randi": "^0.2.1",
"@stdlib/random-base-randn": "^0.2.1",
"@stdlib/random-base-randu": "^0.2.1",
"@stdlib/random-base-rayleigh": "^0.2.1",
"@stdlib/random-base-reviver": "^0.2.1",
"@stdlib/random-base-t": "^0.2.1",
"@stdlib/random-base-triangular": "^0.2.1",
"@stdlib/random-base-uniform": "^0.2.1",
"@stdlib/random-base-weibull": "^0.2.1",
"@stdlib/utils-define-read-only-property": "^0.2.1"
},
"devDependencies": {
"@stdlib/array-int32": "^0.2.1",
"@stdlib/array-to-json": "^0.2.1",
"@stdlib/array-uint32": "^0.2.1",
"@stdlib/assert-contains": "^0.2.1",
"@stdlib/assert-has-own-property": "^0.2.1",
"@stdlib/assert-is-array": "^0.2.1",
"@stdlib/assert-is-array-like-object": "^0.2.1",
"@stdlib/assert-is-boolean": "^0.2.1",
"@stdlib/assert-is-browser": "^0.2.1",
"@stdlib/assert-is-collection": "^0.2.1",
"@stdlib/assert-is-function": "^0.2.1",
"@stdlib/assert-is-int32array": "^0.2.1",
"@stdlib/assert-is-integer": "^0.2.1",
"@stdlib/assert-is-nan": "^0.2.1",
"@stdlib/assert-is-nonnegative-integer": "^0.2.1",
"@stdlib/assert-is-number": "^0.2.1",
"@stdlib/assert-is-plain-object": "^0.2.1",
"@stdlib/assert-is-positive-integer": "^0.2.1",
"@stdlib/assert-is-positive-number": "^0.2.1",
"@stdlib/assert-is-prng-like": "^0.2.1",
"@stdlib/assert-is-probability": "^0.2.1",
"@stdlib/assert-is-string": "^0.2.1",
"@stdlib/assert-is-uint32array": "^0.2.1",
"@stdlib/blas-base-gcopy": "^0.2.1",
"@stdlib/constants-float64-eps": "^0.2.1",
"@stdlib/constants-float64-half-pi": "^0.2.1",
"@stdlib/constants-float64-ln-sqrt-two-pi": "^0.2.1",
"@stdlib/constants-float64-max-safe-integer": "^0.2.1",
"@stdlib/constants-float64-pi": "^0.2.1",
"@stdlib/constants-float64-pinf": "^0.2.1",
"@stdlib/constants-float64-two-pi": "^0.2.1",
"@stdlib/constants-int32-max": "^0.2.1",
"@stdlib/constants-uint32-max": "^0.2.1",
"@stdlib/fs-exists": "^0.2.1",
"@stdlib/fs-read-dir": "^0.2.1",
"@stdlib/fs-write-file": "^0.2.1",
"@stdlib/math-base-assert-is-integer": "^0.2.4",
"@stdlib/math-base-assert-is-nan": "^0.2.1",
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.1.2",
"@stdlib/math-base-assert-is-positive-integer": "^0.2.1",
"@stdlib/math-base-assert-is-probability": "^0.2.2",
"@stdlib/math-base-ops-umul": "^0.2.1",
"@stdlib/math-base-special-abs": "^0.2.1",
"@stdlib/math-base-special-ceil": "^0.2.1",
"@stdlib/math-base-special-cos": "^0.2.1",
"@stdlib/math-base-special-exp": "^0.2.3",
"@stdlib/math-base-special-factorial": "^0.2.1",
"@stdlib/math-base-special-factorialln": "^0.2.1",
"@stdlib/math-base-special-floor": "^0.2.2",
"@stdlib/math-base-special-ln": "^0.2.3",
"@stdlib/math-base-special-max": "^0.2.1",
"@stdlib/math-base-special-pow": "^0.2.1",
"@stdlib/math-base-special-round": "^0.2.1",
"@stdlib/math-base-special-signum": "^0.2.1",
"@stdlib/math-base-special-sin": "^0.2.1",
"@stdlib/math-base-special-sqrt": "^0.2.1",
"@stdlib/math-base-special-tan": "^0.2.2",
"@stdlib/object-assign": "^0.2.1",
"@stdlib/process-env": "^0.2.1",
"@stdlib/stats-base-dists-cosine-quantile": "^0.2.1",
"@stdlib/stats-base-dists-normal-quantile": "^0.2.1",
"@stdlib/stats-chi2gof": "^0.2.1",
"@stdlib/stats-kstest": "^0.2.1",
"@stdlib/string-format": "^0.2.1",
"@stdlib/time-current-year": "^0.2.1",
"@stdlib/time-now": "^0.2.1",
"@stdlib/utils-constant-function": "^0.2.1",
"@stdlib/utils-copy": "^0.2.1",
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.2",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1",
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.1",
"@stdlib/utils-keys": "^0.2.1",
"@stdlib/utils-noop": "^0.2.1",
"@stdlib/utils-parse-json": "^0.2.1",
"proxyquire": "^2.0.0",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
"@stdlib/bench-harness": "^0.2.1"
},
"engines": {
"node": ">=0.10.0",
"npm": ">2.7.0"
},
"os": [
"aix",
"darwin",
"freebsd",
"linux",
"macos",
"openbsd",
"sunos",
"win32",
"windows"
],
"keywords": [
"stdlib",
"standard",
"library",
"std",
"lib",
"base",
"mathematics",
"math",
"statistics",
"stats",
"prng",
"rng",
"pseudorandom",
"random",
"rand",
"generator",
"seed",
"seedable",
"factory"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/stdlib"
}
}