@stdlib/random-array 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 +42 -139
package/README.md
CHANGED
|
@@ -180,8 +180,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
180
180
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/random-array.svg
|
|
181
181
|
[npm-url]: https://npmjs.org/package/@stdlib/random-array
|
|
182
182
|
|
|
183
|
-
[test-image]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
184
|
-
[test-url]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml?query=branch:v0.2.
|
|
183
|
+
[test-image]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
184
|
+
[test-url]: https://github.com/stdlib-js/random-array/actions/workflows/test.yml?query=branch:v0.2.1
|
|
185
185
|
|
|
186
186
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-array/main.svg
|
|
187
187
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-array?branch=main
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-array",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Pseudorandom number generator array creation functions.",
|
|
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,137 +30,46 @@
|
|
|
36
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@stdlib/random-array-arcsine": "^0.2.
|
|
40
|
-
"@stdlib/random-array-bernoulli": "^0.2.
|
|
41
|
-
"@stdlib/random-array-beta": "^0.2.
|
|
42
|
-
"@stdlib/random-array-betaprime": "^0.2.
|
|
43
|
-
"@stdlib/random-array-binomial": "^0.2.
|
|
44
|
-
"@stdlib/random-array-cauchy": "^0.2.
|
|
45
|
-
"@stdlib/random-array-chi": "^0.2.
|
|
46
|
-
"@stdlib/random-array-chisquare": "^0.2.
|
|
47
|
-
"@stdlib/random-array-cosine": "^0.2.
|
|
48
|
-
"@stdlib/random-array-discrete-uniform": "^0.2.
|
|
49
|
-
"@stdlib/random-array-erlang": "^0.2.
|
|
50
|
-
"@stdlib/random-array-exponential": "^0.2.
|
|
51
|
-
"@stdlib/random-array-f": "^0.2.
|
|
52
|
-
"@stdlib/random-array-frechet": "^0.2.
|
|
53
|
-
"@stdlib/random-array-gamma": "^0.2.
|
|
54
|
-
"@stdlib/random-array-geometric": "^0.2.
|
|
55
|
-
"@stdlib/random-array-gumbel": "^0.2.
|
|
56
|
-
"@stdlib/random-array-hypergeometric": "^0.2.
|
|
57
|
-
"@stdlib/random-array-invgamma": "^0.2.
|
|
58
|
-
"@stdlib/random-array-kumaraswamy": "^0.2.
|
|
59
|
-
"@stdlib/random-array-laplace": "^0.2.
|
|
60
|
-
"@stdlib/random-array-levy": "^0.2.
|
|
61
|
-
"@stdlib/random-array-logistic": "^0.2.
|
|
62
|
-
"@stdlib/random-array-lognormal": "^0.2.
|
|
63
|
-
"@stdlib/random-array-minstd": "^0.2.
|
|
64
|
-
"@stdlib/random-array-minstd-shuffle": "^0.2.
|
|
65
|
-
"@stdlib/random-array-mt19937": "^0.2.
|
|
66
|
-
"@stdlib/random-array-negative-binomial": "^0.2.
|
|
67
|
-
"@stdlib/random-array-normal": "^0.2.
|
|
68
|
-
"@stdlib/random-array-pareto-type1": "^0.2.
|
|
69
|
-
"@stdlib/random-array-poisson": "^0.2.
|
|
70
|
-
"@stdlib/random-array-randu": "^0.2.
|
|
71
|
-
"@stdlib/random-array-rayleigh": "^0.2.
|
|
72
|
-
"@stdlib/random-array-t": "^0.2.
|
|
73
|
-
"@stdlib/random-array-triangular": "^0.2.
|
|
74
|
-
"@stdlib/random-array-uniform": "^0.2.
|
|
75
|
-
"@stdlib/random-array-weibull": "^0.2.
|
|
76
|
-
"@stdlib/utils-define-read-only-property": "^0.2.
|
|
77
|
-
},
|
|
78
|
-
"devDependencies": {
|
|
79
|
-
"@stdlib/array-base-assert-contains": "^0.2.0",
|
|
80
|
-
"@stdlib/array-base-filled-by": "^0.1.0",
|
|
81
|
-
"@stdlib/array-ctors": "^0.1.0",
|
|
82
|
-
"@stdlib/array-defaults": "^0.2.0",
|
|
83
|
-
"@stdlib/array-dtypes": "^0.2.0",
|
|
84
|
-
"@stdlib/array-float32": "^0.2.0",
|
|
85
|
-
"@stdlib/array-float64": "^0.2.0",
|
|
86
|
-
"@stdlib/array-int32": "^0.2.0",
|
|
87
|
-
"@stdlib/array-nans": "^0.2.0",
|
|
88
|
-
"@stdlib/array-typed-real-ctors": "^0.2.0",
|
|
89
|
-
"@stdlib/array-typed-real-dtypes": "^0.2.0",
|
|
90
|
-
"@stdlib/array-typed-real-float-ctors": "^0.2.0",
|
|
91
|
-
"@stdlib/array-typed-real-float-dtypes": "^0.2.0",
|
|
92
|
-
"@stdlib/array-uint32": "^0.2.0",
|
|
93
|
-
"@stdlib/array-zeros": "^0.1.0",
|
|
94
|
-
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
95
|
-
"@stdlib/assert-is-collection": "^0.2.0",
|
|
96
|
-
"@stdlib/assert-is-function": "^0.2.0",
|
|
97
|
-
"@stdlib/assert-is-int32array": "^0.2.0",
|
|
98
|
-
"@stdlib/assert-is-method-in": "^0.2.0",
|
|
99
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.2.0",
|
|
100
|
-
"@stdlib/assert-is-plain-object": "^0.2.0",
|
|
101
|
-
"@stdlib/assert-is-string-array": "^0.2.0",
|
|
102
|
-
"@stdlib/assert-is-uint32array": "^0.2.0",
|
|
103
|
-
"@stdlib/console-log-each": "^0.1.0",
|
|
104
|
-
"@stdlib/constants-int32-max": "^0.2.0",
|
|
105
|
-
"@stdlib/constants-uint32-max": "^0.2.0",
|
|
106
|
-
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
107
|
-
"@stdlib/math-base-assert-is-nanf": "^0.2.0",
|
|
108
|
-
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
109
|
-
"@stdlib/random-array-tools-binary": "^0.2.0",
|
|
110
|
-
"@stdlib/random-array-tools-binary-factory": "^0.2.0",
|
|
111
|
-
"@stdlib/random-array-tools-nullary": "^0.2.0",
|
|
112
|
-
"@stdlib/random-array-tools-ternary": "^0.2.0",
|
|
113
|
-
"@stdlib/random-array-tools-ternary-factory": "^0.2.0",
|
|
114
|
-
"@stdlib/random-array-tools-unary": "^0.2.0",
|
|
115
|
-
"@stdlib/random-array-tools-unary-factory": "^0.2.0",
|
|
116
|
-
"@stdlib/random-base-arcsine": "^0.1.0",
|
|
117
|
-
"@stdlib/random-base-bernoulli": "^0.1.0",
|
|
118
|
-
"@stdlib/random-base-beta": "^0.2.0",
|
|
119
|
-
"@stdlib/random-base-betaprime": "^0.2.0",
|
|
120
|
-
"@stdlib/random-base-binomial": "^0.1.0",
|
|
121
|
-
"@stdlib/random-base-cauchy": "^0.2.0",
|
|
122
|
-
"@stdlib/random-base-chi": "^0.2.0",
|
|
123
|
-
"@stdlib/random-base-chisquare": "^0.2.0",
|
|
124
|
-
"@stdlib/random-base-cosine": "^0.2.0",
|
|
125
|
-
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
126
|
-
"@stdlib/random-base-erlang": "^0.2.0",
|
|
127
|
-
"@stdlib/random-base-exponential": "^0.1.0",
|
|
128
|
-
"@stdlib/random-base-f": "^0.2.0",
|
|
129
|
-
"@stdlib/random-base-frechet": "^0.2.0",
|
|
130
|
-
"@stdlib/random-base-gamma": "^0.2.0",
|
|
131
|
-
"@stdlib/random-base-geometric": "^0.1.0",
|
|
132
|
-
"@stdlib/random-base-gumbel": "^0.2.0",
|
|
133
|
-
"@stdlib/random-base-hypergeometric": "^0.1.0",
|
|
134
|
-
"@stdlib/random-base-invgamma": "^0.2.0",
|
|
135
|
-
"@stdlib/random-base-kumaraswamy": "^0.2.0",
|
|
136
|
-
"@stdlib/random-base-laplace": "^0.2.0",
|
|
137
|
-
"@stdlib/random-base-levy": "^0.2.0",
|
|
138
|
-
"@stdlib/random-base-logistic": "^0.2.0",
|
|
139
|
-
"@stdlib/random-base-lognormal": "^0.2.0",
|
|
140
|
-
"@stdlib/random-base-minstd": "^0.1.0",
|
|
141
|
-
"@stdlib/random-base-minstd-shuffle": "^0.1.0",
|
|
142
|
-
"@stdlib/random-base-mt19937": "^0.2.0",
|
|
143
|
-
"@stdlib/random-base-negative-binomial": "^0.2.0",
|
|
144
|
-
"@stdlib/random-base-normal": "^0.1.0",
|
|
145
|
-
"@stdlib/random-base-pareto-type1": "^0.2.0",
|
|
146
|
-
"@stdlib/random-base-poisson": "^0.1.0",
|
|
147
|
-
"@stdlib/random-base-randu": "^0.1.0",
|
|
148
|
-
"@stdlib/random-base-rayleigh": "^0.2.0",
|
|
149
|
-
"@stdlib/random-base-t": "^0.2.0",
|
|
150
|
-
"@stdlib/random-base-triangular": "^0.1.0",
|
|
151
|
-
"@stdlib/random-base-uniform": "^0.1.0",
|
|
152
|
-
"@stdlib/random-base-weibull": "^0.2.0",
|
|
153
|
-
"@stdlib/strided-base-binary": "^0.2.0",
|
|
154
|
-
"@stdlib/strided-base-nullary": "^0.2.0",
|
|
155
|
-
"@stdlib/strided-base-ternary": "^0.2.0",
|
|
156
|
-
"@stdlib/strided-base-unary": "^0.2.0",
|
|
157
|
-
"@stdlib/string-format": "^0.2.0",
|
|
158
|
-
"@stdlib/utils-constant-function": "^0.2.0",
|
|
159
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
|
|
160
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
161
|
-
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.0",
|
|
162
|
-
"@stdlib/utils-keys": "^0.2.0",
|
|
163
|
-
"@stdlib/utils-noop": "^0.2.0",
|
|
164
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
165
|
-
"istanbul": "^0.4.1",
|
|
166
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
167
|
-
"@stdlib/bench-harness": "^0.2.0",
|
|
168
|
-
"@stdlib/bench": "^0.3.1"
|
|
33
|
+
"@stdlib/random-array-arcsine": "^0.2.1",
|
|
34
|
+
"@stdlib/random-array-bernoulli": "^0.2.1",
|
|
35
|
+
"@stdlib/random-array-beta": "^0.2.1",
|
|
36
|
+
"@stdlib/random-array-betaprime": "^0.2.1",
|
|
37
|
+
"@stdlib/random-array-binomial": "^0.2.1",
|
|
38
|
+
"@stdlib/random-array-cauchy": "^0.2.1",
|
|
39
|
+
"@stdlib/random-array-chi": "^0.2.1",
|
|
40
|
+
"@stdlib/random-array-chisquare": "^0.2.1",
|
|
41
|
+
"@stdlib/random-array-cosine": "^0.2.1",
|
|
42
|
+
"@stdlib/random-array-discrete-uniform": "^0.2.1",
|
|
43
|
+
"@stdlib/random-array-erlang": "^0.2.1",
|
|
44
|
+
"@stdlib/random-array-exponential": "^0.2.1",
|
|
45
|
+
"@stdlib/random-array-f": "^0.2.1",
|
|
46
|
+
"@stdlib/random-array-frechet": "^0.2.1",
|
|
47
|
+
"@stdlib/random-array-gamma": "^0.2.1",
|
|
48
|
+
"@stdlib/random-array-geometric": "^0.2.1",
|
|
49
|
+
"@stdlib/random-array-gumbel": "^0.2.1",
|
|
50
|
+
"@stdlib/random-array-hypergeometric": "^0.2.1",
|
|
51
|
+
"@stdlib/random-array-invgamma": "^0.2.1",
|
|
52
|
+
"@stdlib/random-array-kumaraswamy": "^0.2.1",
|
|
53
|
+
"@stdlib/random-array-laplace": "^0.2.1",
|
|
54
|
+
"@stdlib/random-array-levy": "^0.2.1",
|
|
55
|
+
"@stdlib/random-array-logistic": "^0.2.1",
|
|
56
|
+
"@stdlib/random-array-lognormal": "^0.2.1",
|
|
57
|
+
"@stdlib/random-array-minstd": "^0.2.1",
|
|
58
|
+
"@stdlib/random-array-minstd-shuffle": "^0.2.1",
|
|
59
|
+
"@stdlib/random-array-mt19937": "^0.2.1",
|
|
60
|
+
"@stdlib/random-array-negative-binomial": "^0.2.1",
|
|
61
|
+
"@stdlib/random-array-normal": "^0.2.1",
|
|
62
|
+
"@stdlib/random-array-pareto-type1": "^0.2.1",
|
|
63
|
+
"@stdlib/random-array-poisson": "^0.2.1",
|
|
64
|
+
"@stdlib/random-array-randu": "^0.2.1",
|
|
65
|
+
"@stdlib/random-array-rayleigh": "^0.2.1",
|
|
66
|
+
"@stdlib/random-array-t": "^0.2.1",
|
|
67
|
+
"@stdlib/random-array-triangular": "^0.2.1",
|
|
68
|
+
"@stdlib/random-array-uniform": "^0.2.1",
|
|
69
|
+
"@stdlib/random-array-weibull": "^0.2.1",
|
|
70
|
+
"@stdlib/utils-define-read-only-property": "^0.2.1"
|
|
169
71
|
},
|
|
72
|
+
"devDependencies": {},
|
|
170
73
|
"engines": {
|
|
171
74
|
"node": ">=0.10.0",
|
|
172
75
|
"npm": ">2.7.0"
|