@stdlib/random-streams-laplace 0.0.3 → 0.0.7

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/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # Laplace Random Numbers
22
22
 
23
- [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
23
+ [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
24
24
 
25
25
  > Create a [readable stream][readable-stream] for generating pseudorandom numbers drawn from a [Laplace (double exponential)][laplace] distribution.
26
26
 
@@ -487,6 +487,8 @@ npm install -g @stdlib/random-streams-laplace
487
487
  ```
488
488
 
489
489
  </section>
490
+ <!-- CLI usage documentation. -->
491
+
490
492
 
491
493
  <section class="usage">
492
494
 
@@ -543,6 +545,23 @@ $ random-laplace 0.0 1.0 -n 10 --seed 1234
543
545
 
544
546
  <!-- /.cli -->
545
547
 
548
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
549
+
550
+ <section class="related">
551
+
552
+ * * *
553
+
554
+ ## See Also
555
+
556
+ - <span class="package-name">[`@stdlib/random/base/laplace`][@stdlib/random/base/laplace]</span><span class="delimiter">: </span><span class="description">Laplace (double exponential) distributed pseudorandom numbers.</span>
557
+ - <span class="package-name">[`@stdlib/random/iter/laplace`][@stdlib/random/iter/laplace]</span><span class="delimiter">: </span><span class="description">create an iterator for generating pseudorandom numbers drawn from a Laplace distribution.</span>
558
+
559
+ </section>
560
+
561
+ <!-- /.related -->
562
+
563
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
564
+
546
565
 
547
566
  <section class="main-repo" >
548
567
 
@@ -567,7 +586,7 @@ See [LICENSE][stdlib-license].
567
586
 
568
587
  ## Copyright
569
588
 
570
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
589
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
571
590
 
572
591
  </section>
573
592
 
@@ -586,9 +605,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
586
605
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-streams-laplace/main.svg
587
606
  [coverage-url]: https://codecov.io/github/stdlib-js/random-streams-laplace?branch=main
588
607
 
608
+ <!--
609
+
589
610
  [dependencies-image]: https://img.shields.io/david/stdlib-js/random-streams-laplace.svg
590
611
  [dependencies-url]: https://david-dm.org/stdlib-js/random-streams-laplace/main
591
612
 
613
+ -->
614
+
615
+ [umd]: https://github.com/umdjs/umd
616
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
617
+
618
+ [deno-url]: https://github.com/stdlib-js/random-streams-laplace/tree/deno
619
+ [umd-url]: https://github.com/stdlib-js/random-streams-laplace/tree/umd
620
+ [esm-url]: https://github.com/stdlib-js/random-streams-laplace/tree/esm
621
+
592
622
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
593
623
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
594
624
 
@@ -606,7 +636,15 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
606
636
 
607
637
  [laplace]: https://en.wikipedia.org/wiki/Laplace_distribution
608
638
 
609
- [@stdlib/array/uint32]: https://github.com/stdlib-js/array-uint32
639
+ [@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32
640
+
641
+ <!-- <related-links> -->
642
+
643
+ [@stdlib/random/base/laplace]: https://www.npmjs.com/package/@stdlib/random-base-laplace
644
+
645
+ [@stdlib/random/iter/laplace]: https://www.npmjs.com/package/@stdlib/random-iter-laplace
646
+
647
+ <!-- </related-links> -->
610
648
 
611
649
  </section>
612
650
 
package/bin/cli CHANGED
@@ -26,7 +26,7 @@ var proc = require( 'process' );
26
26
  var resolve = require( 'path' ).resolve;
27
27
  var readFileSync = require( '@stdlib/fs-read-file' ).sync;
28
28
  var writeFileSync = require( '@stdlib/fs-write-file' ).sync;
29
- var CLI = require( '@stdlib/cli' );
29
+ var CLI = require( '@stdlib/cli-ctor' );
30
30
  var stdout = require( '@stdlib/streams-node-stdout' );
31
31
  var cwd = require( '@stdlib/process-cwd' );
32
32
  var Uint8Array = require( '@stdlib/array-uint8' );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/random-streams-laplace",
3
- "version": "0.0.3",
3
+ "version": "0.0.7",
4
4
  "description": "Create a readable stream for generating pseudorandom numbers drawn from a Laplace (double exponential) distribution.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -19,7 +19,6 @@
19
19
  "main": "./lib",
20
20
  "directories": {
21
21
  "benchmark": "./benchmark",
22
- "bin": "./bin",
23
22
  "doc": "./docs",
24
23
  "example": "./examples",
25
24
  "lib": "./lib",
@@ -58,7 +57,7 @@
58
57
  "@stdlib/blas-base-gcopy": "^0.0.x",
59
58
  "@stdlib/buffer-from-array": "^0.0.x",
60
59
  "@stdlib/buffer-from-string": "^0.0.x",
61
- "@stdlib/cli": "^0.0.x",
60
+ "@stdlib/cli-ctor": "^0.0.x",
62
61
  "@stdlib/fs-read-file": "^0.0.x",
63
62
  "@stdlib/fs-write-file": "^0.0.x",
64
63
  "@stdlib/math-base-assert-is-nan": "^0.0.x",
package/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- # CHANGELOG
2
-
3
- > Package changelog.
4
-
5
- See [GitHub Releases](https://github.com/stdlib-js/random-streams-laplace/releases) for the changelog.