@stdlib/ndarray-same-kind-casts 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 +8 -23
package/README.md
CHANGED
|
@@ -197,8 +197,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
197
197
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/ndarray-same-kind-casts.svg
|
|
198
198
|
[npm-url]: https://npmjs.org/package/@stdlib/ndarray-same-kind-casts
|
|
199
199
|
|
|
200
|
-
[test-image]: https://github.com/stdlib-js/ndarray-same-kind-casts/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
201
|
-
[test-url]: https://github.com/stdlib-js/ndarray-same-kind-casts/actions/workflows/test.yml?query=branch:v0.2.
|
|
200
|
+
[test-image]: https://github.com/stdlib-js/ndarray-same-kind-casts/actions/workflows/test.yml/badge.svg?branch=v0.2.1
|
|
201
|
+
[test-url]: https://github.com/stdlib-js/ndarray-same-kind-casts/actions/workflows/test.yml?query=branch:v0.2.1
|
|
202
202
|
|
|
203
203
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-same-kind-casts/main.svg
|
|
204
204
|
[coverage-url]: https://codecov.io/github/stdlib-js/ndarray-same-kind-casts?branch=main
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/ndarray-same-kind-casts",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Return a list of ndarray data types to which a provided ndarray data type can be safely cast or cast within the same kind.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -15,20 +15,13 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
|
-
"benchmark": "./benchmark",
|
|
19
18
|
"doc": "./docs",
|
|
20
|
-
"example": "./examples",
|
|
21
19
|
"include": "./include",
|
|
22
20
|
"lib": "./lib",
|
|
23
|
-
"
|
|
21
|
+
"dist": "./dist"
|
|
24
22
|
},
|
|
25
23
|
"types": "./docs/types",
|
|
26
|
-
"scripts": {
|
|
27
|
-
"test": "make test",
|
|
28
|
-
"test-cov": "make test-cov",
|
|
29
|
-
"examples": "make examples",
|
|
30
|
-
"benchmark": "make benchmark"
|
|
31
|
-
},
|
|
24
|
+
"scripts": {},
|
|
32
25
|
"homepage": "https://stdlib.io",
|
|
33
26
|
"repository": {
|
|
34
27
|
"type": "git",
|
|
@@ -38,20 +31,12 @@
|
|
|
38
31
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
39
32
|
},
|
|
40
33
|
"dependencies": {
|
|
41
|
-
"@stdlib/assert-has-own-property": "^0.
|
|
42
|
-
"@stdlib/ndarray-base-dtype-resolve-str": "^0.2.
|
|
43
|
-
"@stdlib/ndarray-dtypes": "^0.2.
|
|
44
|
-
"@stdlib/utils-keys": "^0.2.
|
|
45
|
-
"@stdlib/utils-library-manifest": "^0.2.0"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@stdlib/assert-is-string-array": "^0.1.1",
|
|
49
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
50
|
-
"istanbul": "^0.4.1",
|
|
51
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
52
|
-
"@stdlib/bench-harness": "^0.2.0",
|
|
53
|
-
"@stdlib/bench": "^0.3.1"
|
|
34
|
+
"@stdlib/assert-has-own-property": "^0.2.1",
|
|
35
|
+
"@stdlib/ndarray-base-dtype-resolve-str": "^0.2.1",
|
|
36
|
+
"@stdlib/ndarray-dtypes": "^0.2.1",
|
|
37
|
+
"@stdlib/utils-keys": "^0.2.1"
|
|
54
38
|
},
|
|
39
|
+
"devDependencies": {},
|
|
55
40
|
"engines": {
|
|
56
41
|
"node": ">=0.10.0",
|
|
57
42
|
"npm": ">2.7.0"
|