-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
214 lines (214 loc) · 7.49 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
205
206
207
208
209
210
211
212
213
214
{
"name": "@stdlib/random-streams",
"version": "0.2.1",
"description": "Pseudorandom number generator streams.",
"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-streams.git"
},
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/random-streams-arcsine": "^0.2.1",
"@stdlib/random-streams-bernoulli": "^0.2.1",
"@stdlib/random-streams-beta": "^0.3.1",
"@stdlib/random-streams-betaprime": "^0.2.1",
"@stdlib/random-streams-binomial": "^0.2.1",
"@stdlib/random-streams-box-muller": "^0.2.1",
"@stdlib/random-streams-cauchy": "^0.2.1",
"@stdlib/random-streams-chi": "^0.2.1",
"@stdlib/random-streams-chisquare": "^0.2.1",
"@stdlib/random-streams-cosine": "^0.2.1",
"@stdlib/random-streams-discrete-uniform": "^0.2.1",
"@stdlib/random-streams-erlang": "^0.2.1",
"@stdlib/random-streams-exponential": "^0.2.1",
"@stdlib/random-streams-f": "^0.2.1",
"@stdlib/random-streams-frechet": "^0.2.1",
"@stdlib/random-streams-gamma": "^0.2.1",
"@stdlib/random-streams-geometric": "^0.2.1",
"@stdlib/random-streams-gumbel": "^0.2.1",
"@stdlib/random-streams-hypergeometric": "^0.2.1",
"@stdlib/random-streams-improved-ziggurat": "^0.2.1",
"@stdlib/random-streams-invgamma": "^0.2.1",
"@stdlib/random-streams-kumaraswamy": "^0.2.1",
"@stdlib/random-streams-laplace": "^0.2.1",
"@stdlib/random-streams-levy": "^0.2.1",
"@stdlib/random-streams-logistic": "^0.2.1",
"@stdlib/random-streams-lognormal": "^0.2.1",
"@stdlib/random-streams-minstd": "^0.2.1",
"@stdlib/random-streams-minstd-shuffle": "^0.2.1",
"@stdlib/random-streams-mt19937": "^0.2.1",
"@stdlib/random-streams-negative-binomial": "^0.2.1",
"@stdlib/random-streams-normal": "^0.2.1",
"@stdlib/random-streams-pareto-type1": "^0.2.1",
"@stdlib/random-streams-poisson": "^0.2.1",
"@stdlib/random-streams-randi": "^0.2.1",
"@stdlib/random-streams-randn": "^0.2.1",
"@stdlib/random-streams-randu": "^0.2.1",
"@stdlib/random-streams-rayleigh": "^0.2.1",
"@stdlib/random-streams-t": "^0.2.1",
"@stdlib/random-streams-triangular": "^0.2.1",
"@stdlib/random-streams-uniform": "^0.2.1",
"@stdlib/random-streams-weibull": "^0.2.1",
"@stdlib/utils-define-read-only-property": "^0.2.2"
},
"devDependencies": {
"@stdlib/array-int32": "^0.2.2",
"@stdlib/array-uint32": "^0.2.2",
"@stdlib/array-uint8": "^0.2.2",
"@stdlib/assert-has-own-property": "^0.2.2",
"@stdlib/assert-is-boolean": "^0.2.2",
"@stdlib/assert-is-browser": "^0.2.2",
"@stdlib/assert-is-buffer": "^0.2.2",
"@stdlib/assert-is-error": "^0.2.2",
"@stdlib/assert-is-int32array": "^0.2.2",
"@stdlib/assert-is-integer": "^0.2.2",
"@stdlib/assert-is-nonnegative-integer": "^0.2.2",
"@stdlib/assert-is-nonnegative-number": "^0.2.2",
"@stdlib/assert-is-number": "^0.2.2",
"@stdlib/assert-is-plain-object": "^0.2.2",
"@stdlib/assert-is-positive-integer": "^0.2.2",
"@stdlib/assert-is-positive-number": "^0.2.2",
"@stdlib/assert-is-probability": "^0.2.2",
"@stdlib/assert-is-string": "^0.2.2",
"@stdlib/assert-is-uint32array": "^0.2.2",
"@stdlib/assert-is-windows": "^0.2.2",
"@stdlib/blas-base-gcopy": "^0.2.1",
"@stdlib/buffer-from-string": "^0.2.2",
"@stdlib/constants-int32-max": "^0.3.0",
"@stdlib/constants-uint32-max": "^0.2.2",
"@stdlib/fs-exists": "^0.2.2",
"@stdlib/fs-read-file": "^0.2.2",
"@stdlib/fs-unlink": "^0.2.2",
"@stdlib/math-base-assert-is-integer": "^0.2.5",
"@stdlib/math-base-assert-is-nan": "^0.2.2",
"@stdlib/object-assign": "^0.2.2",
"@stdlib/process-exec-path": "^0.2.2",
"@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-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/streams-node-inspect-sink": "^0.2.2",
"@stdlib/string-format": "^0.2.2",
"@stdlib/string-replace": "^0.2.2",
"@stdlib/time-now": "^0.2.2",
"@stdlib/utils-define-nonenumerable-property": "^0.2.2",
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
"@stdlib/utils-define-read-only-accessor": "^0.2.2",
"@stdlib/utils-define-read-write-accessor": "^0.2.2",
"@stdlib/utils-inherit": "^0.2.2",
"@stdlib/utils-keys": "^0.2.2",
"@stdlib/utils-next-tick": "^0.2.2",
"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.2"
},
"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",
"mathematics",
"math",
"statistics",
"stats",
"prng",
"rng",
"pseudorandom",
"random",
"rand",
"generator",
"seed",
"seedable",
"streams",
"stream",
"streaming",
"readable",
"readable stream"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/stdlib"
}
}