@stdlib/ndarray-base-broadcast-arrays 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 +1 -1
- package/README.md +5 -2
- package/package.json +7 -31
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -203,8 +203,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
203
203
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/ndarray-base-broadcast-arrays.svg
|
|
204
204
|
[npm-url]: https://npmjs.org/package/@stdlib/ndarray-base-broadcast-arrays
|
|
205
205
|
|
|
206
|
-
[test-image]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/actions/workflows/test.yml/badge.svg?branch=v0.1
|
|
207
|
-
[test-url]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/actions/workflows/test.yml?query=branch:v0.1
|
|
206
|
+
[test-image]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
207
|
+
[test-url]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/actions/workflows/test.yml?query=branch:v0.2.1
|
|
208
208
|
|
|
209
209
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-base-broadcast-arrays/main.svg
|
|
210
210
|
[coverage-url]: https://codecov.io/github/stdlib-js/ndarray-base-broadcast-arrays?branch=main
|
|
@@ -227,8 +227,11 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
227
227
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
228
228
|
|
|
229
229
|
[deno-url]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/tree/deno
|
|
230
|
+
[deno-readme]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/blob/deno/README.md
|
|
230
231
|
[umd-url]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/tree/umd
|
|
232
|
+
[umd-readme]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/blob/umd/README.md
|
|
231
233
|
[esm-url]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/tree/esm
|
|
234
|
+
[esm-readme]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/blob/esm/README.md
|
|
232
235
|
[branches-url]: https://github.com/stdlib-js/ndarray-base-broadcast-arrays/blob/main/branches.md
|
|
233
236
|
|
|
234
237
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/ndarray-base-broadcast-arrays/main/LICENSE
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/ndarray-base-broadcast-arrays",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Broadcast ndarrays to a common shape.",
|
|
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
|
-
"
|
|
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,28 +30,11 @@
|
|
|
37
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
31
|
},
|
|
39
32
|
"dependencies": {
|
|
40
|
-
"@stdlib/ndarray-base-broadcast-array": "^0.1
|
|
41
|
-
"@stdlib/ndarray-base-broadcast-shapes": "^0.
|
|
42
|
-
"@stdlib/ndarray-base-shape": "^0.1
|
|
43
|
-
"@stdlib/types": "^0.2.0"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@stdlib/array-float64": "^0.1.1",
|
|
47
|
-
"@stdlib/assert-is-array": "^0.1.1",
|
|
48
|
-
"@stdlib/assert-is-ndarray-like": "^0.1.0",
|
|
49
|
-
"@stdlib/ndarray-array": "^0.1.0",
|
|
50
|
-
"@stdlib/ndarray-base-ctor": "^0.1.0",
|
|
51
|
-
"@stdlib/ndarray-base-numel": "^0.1.1",
|
|
52
|
-
"@stdlib/ndarray-base-zeros": "^0.1.0",
|
|
53
|
-
"@stdlib/ndarray-ctor": "^0.1.0",
|
|
54
|
-
"@stdlib/ndarray-ind2sub": "^0.1.1",
|
|
55
|
-
"@stdlib/ndarray-zeros": "^0.1.0",
|
|
56
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
57
|
-
"istanbul": "^0.4.1",
|
|
58
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
59
|
-
"@stdlib/bench-harness": "^0.1.2",
|
|
60
|
-
"@stdlib/bench": "^0.2.1"
|
|
33
|
+
"@stdlib/ndarray-base-broadcast-array": "^0.2.1",
|
|
34
|
+
"@stdlib/ndarray-base-broadcast-shapes": "^0.2.1",
|
|
35
|
+
"@stdlib/ndarray-base-shape": "^0.2.1"
|
|
61
36
|
},
|
|
37
|
+
"devDependencies": {},
|
|
62
38
|
"engines": {
|
|
63
39
|
"node": ">=0.10.0",
|
|
64
40
|
"npm": ">2.7.0"
|