@stdlib/array-base-map5d 0.1.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/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -206,7 +206,7 @@ See [LICENSE][stdlib-license].
206
206
 
207
207
  ## Copyright
208
208
 
209
- Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
209
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
210
210
 
211
211
  </section>
212
212
 
@@ -219,8 +219,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
219
219
  [npm-image]: http://img.shields.io/npm/v/@stdlib/array-base-map5d.svg
220
220
  [npm-url]: https://npmjs.org/package/@stdlib/array-base-map5d
221
221
 
222
- [test-image]: https://github.com/stdlib-js/array-base-map5d/actions/workflows/test.yml/badge.svg?branch=v0.1.0
223
- [test-url]: https://github.com/stdlib-js/array-base-map5d/actions/workflows/test.yml?query=branch:v0.1.0
222
+ [test-image]: https://github.com/stdlib-js/array-base-map5d/actions/workflows/test.yml/badge.svg?branch=v0.2.1
223
+ [test-url]: https://github.com/stdlib-js/array-base-map5d/actions/workflows/test.yml?query=branch:v0.2.1
224
224
 
225
225
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-base-map5d/main.svg
226
226
  [coverage-url]: https://codecov.io/github/stdlib-js/array-base-map5d?branch=main
@@ -243,8 +243,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
243
243
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
244
244
 
245
245
  [deno-url]: https://github.com/stdlib-js/array-base-map5d/tree/deno
246
+ [deno-readme]: https://github.com/stdlib-js/array-base-map5d/blob/deno/README.md
246
247
  [umd-url]: https://github.com/stdlib-js/array-base-map5d/tree/umd
248
+ [umd-readme]: https://github.com/stdlib-js/array-base-map5d/blob/umd/README.md
247
249
  [esm-url]: https://github.com/stdlib-js/array-base-map5d/tree/esm
250
+ [esm-readme]: https://github.com/stdlib-js/array-base-map5d/blob/esm/README.md
248
251
  [branches-url]: https://github.com/stdlib-js/array-base-map5d/blob/main/branches.md
249
252
 
250
253
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/array-base-map5d/main/LICENSE
@@ -85,7 +85,7 @@ interface Routine {
85
85
  * @param thisArg - function execution context
86
86
  *
87
87
  * @example
88
- * var ones5d = require( `@stdlib/array/base/ones5d` );
88
+ * var ones5d = require( '@stdlib/array-base-ones5d' );
89
89
  *
90
90
  * function scale( x ) {
91
91
  * return x * 10.0;
@@ -109,8 +109,8 @@ interface Routine {
109
109
  * @param thisArg - function execution context
110
110
  *
111
111
  * @example
112
- * var ones5d = require( `@stdlib/array/base/ones5d` );
113
- * var zeros5d = require( `@stdlib/array/base/zeros5d` );
112
+ * var ones5d = require( '@stdlib/array-base-ones5d' );
113
+ * var zeros5d = require( '@stdlib/array-base-zeros5d' );
114
114
  *
115
115
  * function scale( x ) {
116
116
  * return x * 10.0;
@@ -147,7 +147,7 @@ interface Routine {
147
147
  * @param thisArg - function execution context
148
148
  *
149
149
  * @example
150
- * var ones5d = require( `@stdlib/array/base/ones5d` );
150
+ * var ones5d = require( '@stdlib/array-base-ones5d' );
151
151
  *
152
152
  * function scale( x ) {
153
153
  * return x * 10.0;
@@ -160,8 +160,8 @@ interface Routine {
160
160
  * // returns [ [ [ [ [ 10.0, 10.0 ], [ 10.0, 10.0 ] ] ] ] ]
161
161
  *
162
162
  * @example
163
- * var ones5d = require( `@stdlib/array/base/ones5d` );
164
- * var zeros5d = require( `@stdlib/array/base/zeros5d` );
163
+ * var ones5d = require( '@stdlib/array-base-ones5d' );
164
+ * var zeros5d = require( '@stdlib/array-base-zeros5d' );
165
165
  *
166
166
  * function scale( x ) {
167
167
  * return x * 10.0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/array-base-map5d",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Apply a function to elements in a five-dimensional nested input array and assign results to elements in a new five-dimensional nested output array.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -15,19 +15,12 @@
15
15
  ],
16
16
  "main": "./lib",
17
17
  "directories": {
18
- "benchmark": "./benchmark",
19
18
  "doc": "./docs",
20
- "example": "./examples",
21
19
  "lib": "./lib",
22
- "test": "./test"
20
+ "dist": "./dist"
23
21
  },
24
22
  "types": "./docs/types",
25
- "scripts": {
26
- "test": "make test",
27
- "test-cov": "make test-cov",
28
- "examples": "make examples",
29
- "benchmark": "make benchmark"
30
- },
23
+ "scripts": {},
31
24
  "homepage": "https://stdlib.io",
32
25
  "repository": {
33
26
  "type": "git",
@@ -37,27 +30,9 @@
37
30
  "url": "https://github.com/stdlib-js/stdlib/issues"
38
31
  },
39
32
  "dependencies": {
40
- "@stdlib/types": "^0.2.0",
41
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1"
42
- },
43
- "devDependencies": {
44
- "@stdlib/array-base-filled5d-by": "^0.1.0",
45
- "@stdlib/array-base-zeros5d": "^0.1.0",
46
- "@stdlib/math-base-assert-is-nan": "^0.1.1",
47
- "@stdlib/math-base-special-abs": "^0.1.1",
48
- "@stdlib/math-base-special-floor": "^0.1.1",
49
- "@stdlib/math-base-special-identity": "^0.1.1",
50
- "@stdlib/math-base-special-pow": "^0.1.0",
51
- "@stdlib/ndarray-base-numel": "^0.1.1",
52
- "@stdlib/random-base-discrete-uniform": "^0.1.0",
53
- "@stdlib/random-base-uniform": "^0.1.0",
54
- "@stdlib/utils-nary-function": "^0.1.0",
55
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
56
- "istanbul": "^0.4.1",
57
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
58
- "@stdlib/bench-harness": "^0.1.2",
59
- "@stdlib/bench": "^0.2.1"
33
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.1"
60
34
  },
35
+ "devDependencies": {},
61
36
  "engines": {
62
37
  "node": ">=0.10.0",
63
38
  "npm": ">2.7.0"