@stdlib/random-iter 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +46 -129
package/README.md
CHANGED
|
@@ -184,8 +184,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
184
184
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/random-iter.svg
|
|
185
185
|
[npm-url]: https://npmjs.org/package/@stdlib/random-iter
|
|
186
186
|
|
|
187
|
-
[test-image]: https://github.com/stdlib-js/random-iter/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
188
|
-
[test-url]: https://github.com/stdlib-js/random-iter/actions/workflows/test.yml?query=branch:v0.2.
|
|
187
|
+
[test-image]: https://github.com/stdlib-js/random-iter/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
188
|
+
[test-url]: https://github.com/stdlib-js/random-iter/actions/workflows/test.yml?query=branch:v0.2.1
|
|
189
189
|
|
|
190
190
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-iter/main.svg
|
|
191
191
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-iter?branch=main
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-iter",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Pseudorandom number generator iterators.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -16,17 +16,11 @@
|
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
18
|
"doc": "./docs",
|
|
19
|
-
"example": "./examples",
|
|
20
19
|
"lib": "./lib",
|
|
21
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
22
21
|
},
|
|
23
22
|
"types": "./docs/types",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "make test",
|
|
26
|
-
"test-cov": "make test-cov",
|
|
27
|
-
"examples": "make examples",
|
|
28
|
-
"benchmark": "make benchmark"
|
|
29
|
-
},
|
|
23
|
+
"scripts": {},
|
|
30
24
|
"homepage": "https://stdlib.io",
|
|
31
25
|
"repository": {
|
|
32
26
|
"type": "git",
|
|
@@ -36,127 +30,50 @@
|
|
|
36
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@stdlib/random-iter-arcsine": "^0.2.
|
|
40
|
-
"@stdlib/random-iter-bernoulli": "^0.2.
|
|
41
|
-
"@stdlib/random-iter-beta": "^0.2.
|
|
42
|
-
"@stdlib/random-iter-betaprime": "^0.2.
|
|
43
|
-
"@stdlib/random-iter-binomial": "^0.2.
|
|
44
|
-
"@stdlib/random-iter-box-muller": "^0.2.
|
|
45
|
-
"@stdlib/random-iter-cauchy": "^0.2.
|
|
46
|
-
"@stdlib/random-iter-chi": "^0.2.
|
|
47
|
-
"@stdlib/random-iter-chisquare": "^0.2.
|
|
48
|
-
"@stdlib/random-iter-cosine": "^0.2.
|
|
49
|
-
"@stdlib/random-iter-discrete-uniform": "^0.2.
|
|
50
|
-
"@stdlib/random-iter-erlang": "^0.2.
|
|
51
|
-
"@stdlib/random-iter-exponential": "^0.2.
|
|
52
|
-
"@stdlib/random-iter-f": "^0.2.
|
|
53
|
-
"@stdlib/random-iter-frechet": "^0.2.
|
|
54
|
-
"@stdlib/random-iter-gamma": "^0.2.
|
|
55
|
-
"@stdlib/random-iter-geometric": "^0.2.
|
|
56
|
-
"@stdlib/random-iter-gumbel": "^0.2.
|
|
57
|
-
"@stdlib/random-iter-hypergeometric": "^0.2.
|
|
58
|
-
"@stdlib/random-iter-improved-ziggurat": "^0.2.
|
|
59
|
-
"@stdlib/random-iter-invgamma": "^0.2.
|
|
60
|
-
"@stdlib/random-iter-kumaraswamy": "^0.2.
|
|
61
|
-
"@stdlib/random-iter-laplace": "^0.2.
|
|
62
|
-
"@stdlib/random-iter-levy": "^0.2.
|
|
63
|
-
"@stdlib/random-iter-logistic": "^0.2.
|
|
64
|
-
"@stdlib/random-iter-lognormal": "^0.2.
|
|
65
|
-
"@stdlib/random-iter-minstd": "^0.2.
|
|
66
|
-
"@stdlib/random-iter-minstd-shuffle": "^0.2.
|
|
67
|
-
"@stdlib/random-iter-mt19937": "^0.2.
|
|
68
|
-
"@stdlib/random-iter-negative-binomial": "^0.2.
|
|
69
|
-
"@stdlib/random-iter-normal": "^0.2.
|
|
70
|
-
"@stdlib/random-iter-pareto-type1": "^0.2.
|
|
71
|
-
"@stdlib/random-iter-poisson": "^0.2.
|
|
72
|
-
"@stdlib/random-iter-randi": "^0.2.
|
|
73
|
-
"@stdlib/random-iter-randn": "^0.2.
|
|
74
|
-
"@stdlib/random-iter-randu": "^0.2.
|
|
75
|
-
"@stdlib/random-iter-rayleigh": "^0.2.
|
|
76
|
-
"@stdlib/random-iter-t": "^0.2.
|
|
77
|
-
"@stdlib/random-iter-triangular": "^0.2.
|
|
78
|
-
"@stdlib/random-iter-uniform": "^0.2.
|
|
79
|
-
"@stdlib/random-iter-weibull": "^0.2.
|
|
80
|
-
"@stdlib/utils-define-read-only-property": "^0.2.
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@stdlib/array-int32": "^0.2.0",
|
|
84
|
-
"@stdlib/array-uint32": "^0.2.0",
|
|
85
|
-
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
86
|
-
"@stdlib/assert-is-boolean": "^0.2.0",
|
|
87
|
-
"@stdlib/assert-is-int32array": "^0.2.0",
|
|
88
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.2.0",
|
|
89
|
-
"@stdlib/assert-is-number": "^0.2.0",
|
|
90
|
-
"@stdlib/assert-is-plain-object": "^0.2.0",
|
|
91
|
-
"@stdlib/assert-is-positive-integer": "^0.2.0",
|
|
92
|
-
"@stdlib/assert-is-positive-number": "^0.2.0",
|
|
93
|
-
"@stdlib/assert-is-probability": "^0.2.0",
|
|
94
|
-
"@stdlib/assert-is-uint32array": "^0.2.0",
|
|
95
|
-
"@stdlib/constants-float64-eps": "^0.2.0",
|
|
96
|
-
"@stdlib/constants-float64-max": "^0.2.0",
|
|
97
|
-
"@stdlib/constants-int32-max": "^0.2.0",
|
|
98
|
-
"@stdlib/constants-uint32-max": "^0.2.0",
|
|
99
|
-
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
100
|
-
"@stdlib/math-base-special-ceil": "^0.2.0",
|
|
101
|
-
"@stdlib/math-base-special-floor": "^0.2.0",
|
|
102
|
-
"@stdlib/object-assign": "^0.2.0",
|
|
103
|
-
"@stdlib/random-base-arcsine": "^0.1.0",
|
|
104
|
-
"@stdlib/random-base-bernoulli": "^0.1.0",
|
|
105
|
-
"@stdlib/random-base-beta": "^0.2.0",
|
|
106
|
-
"@stdlib/random-base-betaprime": "^0.2.0",
|
|
107
|
-
"@stdlib/random-base-binomial": "^0.1.0",
|
|
108
|
-
"@stdlib/random-base-box-muller": "^0.1.0",
|
|
109
|
-
"@stdlib/random-base-cauchy": "^0.2.0",
|
|
110
|
-
"@stdlib/random-base-chi": "^0.2.0",
|
|
111
|
-
"@stdlib/random-base-chisquare": "^0.2.0",
|
|
112
|
-
"@stdlib/random-base-cosine": "^0.2.0",
|
|
113
|
-
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
114
|
-
"@stdlib/random-base-erlang": "^0.2.0",
|
|
115
|
-
"@stdlib/random-base-exponential": "^0.1.0",
|
|
116
|
-
"@stdlib/random-base-f": "^0.2.0",
|
|
117
|
-
"@stdlib/random-base-frechet": "^0.2.0",
|
|
118
|
-
"@stdlib/random-base-gamma": "^0.2.0",
|
|
119
|
-
"@stdlib/random-base-geometric": "^0.1.0",
|
|
120
|
-
"@stdlib/random-base-gumbel": "^0.2.0",
|
|
121
|
-
"@stdlib/random-base-hypergeometric": "^0.1.0",
|
|
122
|
-
"@stdlib/random-base-improved-ziggurat": "^0.2.0",
|
|
123
|
-
"@stdlib/random-base-invgamma": "^0.2.0",
|
|
124
|
-
"@stdlib/random-base-kumaraswamy": "^0.2.0",
|
|
125
|
-
"@stdlib/random-base-laplace": "^0.2.0",
|
|
126
|
-
"@stdlib/random-base-levy": "^0.2.0",
|
|
127
|
-
"@stdlib/random-base-logistic": "^0.2.0",
|
|
128
|
-
"@stdlib/random-base-lognormal": "^0.2.0",
|
|
129
|
-
"@stdlib/random-base-minstd": "^0.1.0",
|
|
130
|
-
"@stdlib/random-base-minstd-shuffle": "^0.1.0",
|
|
131
|
-
"@stdlib/random-base-mt19937": "^0.2.0",
|
|
132
|
-
"@stdlib/random-base-negative-binomial": "^0.2.0",
|
|
133
|
-
"@stdlib/random-base-normal": "^0.1.0",
|
|
134
|
-
"@stdlib/random-base-pareto-type1": "^0.2.0",
|
|
135
|
-
"@stdlib/random-base-poisson": "^0.1.0",
|
|
136
|
-
"@stdlib/random-base-randi": "^0.2.0",
|
|
137
|
-
"@stdlib/random-base-randn": "^0.2.0",
|
|
138
|
-
"@stdlib/random-base-randu": "^0.1.0",
|
|
139
|
-
"@stdlib/random-base-rayleigh": "^0.2.0",
|
|
140
|
-
"@stdlib/random-base-t": "^0.2.0",
|
|
141
|
-
"@stdlib/random-base-triangular": "^0.1.0",
|
|
142
|
-
"@stdlib/random-base-uniform": "^0.1.0",
|
|
143
|
-
"@stdlib/random-base-weibull": "^0.2.0",
|
|
144
|
-
"@stdlib/string-format": "^0.2.0",
|
|
145
|
-
"@stdlib/symbol-iterator": "^0.2.0",
|
|
146
|
-
"@stdlib/time-now": "^0.2.0",
|
|
147
|
-
"@stdlib/utils-constant-function": "^0.2.0",
|
|
148
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
|
|
149
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
150
|
-
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.0",
|
|
151
|
-
"@stdlib/utils-keys": "^0.2.0",
|
|
152
|
-
"@stdlib/utils-noop": "^0.2.0",
|
|
153
|
-
"proxyquire": "^2.0.0",
|
|
154
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
155
|
-
"istanbul": "^0.4.1",
|
|
156
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
157
|
-
"@stdlib/bench-harness": "^0.2.0",
|
|
158
|
-
"@stdlib/bench": "^0.3.1"
|
|
33
|
+
"@stdlib/random-iter-arcsine": "^0.2.1",
|
|
34
|
+
"@stdlib/random-iter-bernoulli": "^0.2.1",
|
|
35
|
+
"@stdlib/random-iter-beta": "^0.2.1",
|
|
36
|
+
"@stdlib/random-iter-betaprime": "^0.2.1",
|
|
37
|
+
"@stdlib/random-iter-binomial": "^0.2.1",
|
|
38
|
+
"@stdlib/random-iter-box-muller": "^0.2.1",
|
|
39
|
+
"@stdlib/random-iter-cauchy": "^0.2.1",
|
|
40
|
+
"@stdlib/random-iter-chi": "^0.2.1",
|
|
41
|
+
"@stdlib/random-iter-chisquare": "^0.2.1",
|
|
42
|
+
"@stdlib/random-iter-cosine": "^0.2.1",
|
|
43
|
+
"@stdlib/random-iter-discrete-uniform": "^0.2.1",
|
|
44
|
+
"@stdlib/random-iter-erlang": "^0.2.1",
|
|
45
|
+
"@stdlib/random-iter-exponential": "^0.2.1",
|
|
46
|
+
"@stdlib/random-iter-f": "^0.2.1",
|
|
47
|
+
"@stdlib/random-iter-frechet": "^0.2.1",
|
|
48
|
+
"@stdlib/random-iter-gamma": "^0.2.1",
|
|
49
|
+
"@stdlib/random-iter-geometric": "^0.2.1",
|
|
50
|
+
"@stdlib/random-iter-gumbel": "^0.2.1",
|
|
51
|
+
"@stdlib/random-iter-hypergeometric": "^0.2.1",
|
|
52
|
+
"@stdlib/random-iter-improved-ziggurat": "^0.2.1",
|
|
53
|
+
"@stdlib/random-iter-invgamma": "^0.2.1",
|
|
54
|
+
"@stdlib/random-iter-kumaraswamy": "^0.2.1",
|
|
55
|
+
"@stdlib/random-iter-laplace": "^0.2.1",
|
|
56
|
+
"@stdlib/random-iter-levy": "^0.2.1",
|
|
57
|
+
"@stdlib/random-iter-logistic": "^0.2.1",
|
|
58
|
+
"@stdlib/random-iter-lognormal": "^0.2.1",
|
|
59
|
+
"@stdlib/random-iter-minstd": "^0.2.1",
|
|
60
|
+
"@stdlib/random-iter-minstd-shuffle": "^0.2.1",
|
|
61
|
+
"@stdlib/random-iter-mt19937": "^0.2.1",
|
|
62
|
+
"@stdlib/random-iter-negative-binomial": "^0.2.1",
|
|
63
|
+
"@stdlib/random-iter-normal": "^0.2.1",
|
|
64
|
+
"@stdlib/random-iter-pareto-type1": "^0.2.1",
|
|
65
|
+
"@stdlib/random-iter-poisson": "^0.2.1",
|
|
66
|
+
"@stdlib/random-iter-randi": "^0.2.1",
|
|
67
|
+
"@stdlib/random-iter-randn": "^0.2.1",
|
|
68
|
+
"@stdlib/random-iter-randu": "^0.2.1",
|
|
69
|
+
"@stdlib/random-iter-rayleigh": "^0.2.1",
|
|
70
|
+
"@stdlib/random-iter-t": "^0.2.1",
|
|
71
|
+
"@stdlib/random-iter-triangular": "^0.2.1",
|
|
72
|
+
"@stdlib/random-iter-uniform": "^0.2.1",
|
|
73
|
+
"@stdlib/random-iter-weibull": "^0.2.1",
|
|
74
|
+
"@stdlib/utils-define-read-only-property": "^0.2.1"
|
|
159
75
|
},
|
|
76
|
+
"devDependencies": {},
|
|
160
77
|
"engines": {
|
|
161
78
|
"node": ">=0.10.0",
|
|
162
79
|
"npm": ">2.7.0"
|