@stdlib/assert-is-complex-like 0.2.2 → 0.2.3

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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +7 -7
  3. package/package.json +20 -6
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2024 The Stdlib Authors.
1
+ Copyright (c) 2016-2026 The Stdlib Authors.
package/README.md CHANGED
@@ -82,7 +82,7 @@ bool = isComplexLike( x );
82
82
  <!-- /.usage -->
83
83
 
84
84
  <section class="notes">
85
-
85
+
86
86
  ## Notes
87
87
 
88
88
  - A complex number-like `object` is defined as an `object` having the following properties assigned to numeric values:
@@ -169,7 +169,7 @@ See [LICENSE][stdlib-license].
169
169
 
170
170
  ## Copyright
171
171
 
172
- Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
172
+ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
173
173
 
174
174
  </section>
175
175
 
@@ -182,11 +182,11 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
182
182
  [npm-image]: http://img.shields.io/npm/v/@stdlib/assert-is-complex-like.svg
183
183
  [npm-url]: https://npmjs.org/package/@stdlib/assert-is-complex-like
184
184
 
185
- [test-image]: https://github.com/stdlib-js/assert-is-complex-like/actions/workflows/test.yml/badge.svg?branch=v0.2.2
186
- [test-url]: https://github.com/stdlib-js/assert-is-complex-like/actions/workflows/test.yml?query=branch:v0.2.2
185
+ [test-image]: https://github.com/stdlib-js/assert-is-complex-like/actions/workflows/test.yml/badge.svg?branch=v0.2.3
186
+ [test-url]: https://github.com/stdlib-js/assert-is-complex-like/actions/workflows/test.yml?query=branch:v0.2.3
187
187
 
188
188
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-complex-like/main.svg
189
- [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-complex-like?branch=main
189
+ [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-complex-like?branch=v0.2.3
190
190
 
191
191
  <!--
192
192
 
@@ -195,8 +195,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
195
195
 
196
196
  -->
197
197
 
198
- [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
199
- [chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
198
+ [chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
199
+ [chat-url]: https://stdlib.zulipchat.com
200
200
 
201
201
  [stdlib]: https://github.com/stdlib-js/stdlib
202
202
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-complex-like",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Test if a value is a complex number-like object.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -15,12 +15,19 @@
15
15
  ],
16
16
  "main": "./lib",
17
17
  "directories": {
18
+ "benchmark": "./benchmark",
18
19
  "doc": "./docs",
20
+ "example": "./examples",
19
21
  "lib": "./lib",
20
- "dist": "./dist"
22
+ "test": "./test"
21
23
  },
22
24
  "types": "./docs/types",
23
- "scripts": {},
25
+ "scripts": {
26
+ "test": "make test",
27
+ "test-cov": "make test-cov",
28
+ "examples": "make examples",
29
+ "benchmark": "make benchmark"
30
+ },
24
31
  "homepage": "https://stdlib.io",
25
32
  "repository": {
26
33
  "type": "git",
@@ -30,10 +37,17 @@
30
37
  "url": "https://github.com/stdlib-js/stdlib/issues"
31
38
  },
32
39
  "dependencies": {
33
- "@stdlib/complex-float32-ctor": "^0.0.2",
34
- "@stdlib/complex-float64-ctor": "^0.0.2"
40
+ "@stdlib/complex-float32-ctor": "^0.1.0",
41
+ "@stdlib/complex-float64-ctor": "^0.1.1",
42
+ "@stdlib/types": "^0.4.3"
43
+ },
44
+ "devDependencies": {
45
+ "@stdlib/assert-is-boolean": "^0.2.2",
46
+ "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
47
+ "istanbul": "^0.4.1",
48
+ "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
49
+ "@stdlib/bench-harness": "^0.2.2"
35
50
  },
36
- "devDependencies": {},
37
51
  "engines": {
38
52
  "node": ">=0.10.0",
39
53
  "npm": ">2.7.0"