@stdlib/math-base-tools 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
@@ -136,7 +136,7 @@ See [LICENSE][stdlib-license].
136
136
 
137
137
  ## Copyright
138
138
 
139
- Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
139
+ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
140
140
 
141
141
  </section>
142
142
 
@@ -149,8 +149,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
149
149
  [npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-tools.svg
150
150
  [npm-url]: https://npmjs.org/package/@stdlib/math-base-tools
151
151
 
152
- [test-image]: https://github.com/stdlib-js/math-base-tools/actions/workflows/test.yml/badge.svg?branch=v0.1.0
153
- [test-url]: https://github.com/stdlib-js/math-base-tools/actions/workflows/test.yml?query=branch:v0.1.0
152
+ [test-image]: https://github.com/stdlib-js/math-base-tools/actions/workflows/test.yml/badge.svg?branch=v0.2.1
153
+ [test-url]: https://github.com/stdlib-js/math-base-tools/actions/workflows/test.yml?query=branch:v0.2.1
154
154
 
155
155
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-tools/main.svg
156
156
  [coverage-url]: https://codecov.io/github/stdlib-js/math-base-tools?branch=main
@@ -173,8 +173,11 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
173
173
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
174
174
 
175
175
  [deno-url]: https://github.com/stdlib-js/math-base-tools/tree/deno
176
+ [deno-readme]: https://github.com/stdlib-js/math-base-tools/blob/deno/README.md
176
177
  [umd-url]: https://github.com/stdlib-js/math-base-tools/tree/umd
178
+ [umd-readme]: https://github.com/stdlib-js/math-base-tools/blob/umd/README.md
177
179
  [esm-url]: https://github.com/stdlib-js/math-base-tools/tree/esm
180
+ [esm-readme]: https://github.com/stdlib-js/math-base-tools/blob/esm/README.md
178
181
  [branches-url]: https://github.com/stdlib-js/math-base-tools/blob/main/branches.md
179
182
 
180
183
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-tools/main/LICENSE
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
@@ -18,8 +18,7 @@
18
18
 
19
19
  // TypeScript Version: 4.1
20
20
 
21
- /* tslint:disable:max-line-length */
22
- /* tslint:disable:max-file-line-count */
21
+ /* eslint-disable max-lines */
23
22
 
24
23
  import continuedFraction = require( '@stdlib/math-base-tools-continued-fraction' );
25
24
  import evalpoly = require( '@stdlib/math-base-tools-evalpoly' );
@@ -227,7 +226,7 @@ interface Namespace {
227
226
  * @returns sum of all series terms
228
227
  *
229
228
  * @example
230
- * var pow = require( `@stdlib/math/base/special/pow` );
229
+ * var pow = require( '@stdlib/math-base-special-pow' );
231
230
  * var gen = geometricSeriesGenerator( 0.9 );
232
231
  * var out = ns.sumSeries( gen );
233
232
  * // returns 10.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-base-tools",
3
- "version": "0.1.0",
3
+ "version": "0.2.1",
4
4
  "description": "Base math tools.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -16,17 +16,11 @@
16
16
  "main": "./lib",
17
17
  "directories": {
18
18
  "doc": "./docs",
19
- "example": "./examples",
20
19
  "lib": "./lib",
21
- "test": "./test"
20
+ "dist": "./dist"
22
21
  },
23
22
  "types": "./docs/types",
24
- "scripts": {
25
- "test": "make test",
26
- "test-cov": "make test-cov",
27
- "examples": "make examples",
28
- "benchmark": "make benchmark"
29
- },
23
+ "scripts": {},
30
24
  "homepage": "https://stdlib.io",
31
25
  "repository": {
32
26
  "type": "git",
@@ -36,56 +30,17 @@
36
30
  "url": "https://github.com/stdlib-js/stdlib/issues"
37
31
  },
38
32
  "dependencies": {
39
- "@stdlib/math-base-tools-continued-fraction": "^0.1.0",
40
- "@stdlib/math-base-tools-evalpoly": "^0.1.0",
41
- "@stdlib/math-base-tools-evalrational": "^0.1.0",
42
- "@stdlib/math-base-tools-fibpoly": "^0.0.6",
43
- "@stdlib/math-base-tools-hermitepoly": "^0.0.6",
44
- "@stdlib/math-base-tools-lucaspoly": "^0.0.6",
45
- "@stdlib/math-base-tools-normhermitepoly": "^0.1.0",
46
- "@stdlib/math-base-tools-sum-series": "^0.1.0",
47
- "@stdlib/utils-define-read-only-property": "^0.1.0"
48
- },
49
- "devDependencies": {
50
- "@stdlib/array-float64": "^0.1.0",
51
- "@stdlib/assert-has-generator-support": "^0.1.0",
52
- "@stdlib/assert-is-browser": "^0.1.0",
53
- "@stdlib/assert-is-integer": "^0.1.0",
54
- "@stdlib/assert-is-string": "^0.1.0",
55
- "@stdlib/bench": "^0.1.0",
56
- "@stdlib/constants-float32-smallest-normal": "^0.1.0",
57
- "@stdlib/constants-float64-eps": "^0.1.0",
58
- "@stdlib/constants-float64-sqrt-two": "^0.1.0",
59
- "@stdlib/fs-read-file": "^0.1.0",
60
- "@stdlib/function-ctor": "^0.1.0",
61
- "@stdlib/math-base-assert-is-integer": "^0.1.0",
62
- "@stdlib/math-base-assert-is-nan": "^0.1.0",
63
- "@stdlib/math-base-special-abs": "^0.1.0",
64
- "@stdlib/math-base-special-binomcoef": "^0.1.0",
65
- "@stdlib/math-base-special-ceil": "^0.1.0",
66
- "@stdlib/math-base-special-fibonacci": "^0.1.0",
67
- "@stdlib/math-base-special-floor": "^0.1.0",
68
- "@stdlib/math-base-special-log1p": "^0.1.0",
69
- "@stdlib/math-base-special-lucas": "^0.1.0",
70
- "@stdlib/math-base-special-negafibonacci": "^0.1.0",
71
- "@stdlib/math-base-special-negalucas": "^0.1.0",
72
- "@stdlib/math-base-special-pow": "^0.1.0",
73
- "@stdlib/math-base-special-round": "^0.1.0",
74
- "@stdlib/math-base-special-tan": "^0.0.6",
75
- "@stdlib/random-base-discrete-uniform": "^0.0.6",
76
- "@stdlib/random-base-randu": "^0.0.8",
77
- "@stdlib/string-base-uppercase": "^0.1.0",
78
- "@stdlib/string-replace": "^0.1.0",
79
- "@stdlib/utils-constant-function": "^0.1.0",
80
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0",
81
- "@stdlib/utils-eval": "^0.1.0",
82
- "@stdlib/utils-keys": "^0.1.0",
83
- "@stdlib/utils-try-require": "^0.1.0",
84
- "proxyquire": "^2.0.0",
85
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
86
- "istanbul": "^0.4.1",
87
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
33
+ "@stdlib/math-base-tools-continued-fraction": "^0.2.1",
34
+ "@stdlib/math-base-tools-evalpoly": "^0.2.1",
35
+ "@stdlib/math-base-tools-evalrational": "^0.2.1",
36
+ "@stdlib/math-base-tools-fibpoly": "^0.2.1",
37
+ "@stdlib/math-base-tools-hermitepoly": "^0.2.1",
38
+ "@stdlib/math-base-tools-lucaspoly": "^0.2.1",
39
+ "@stdlib/math-base-tools-normhermitepoly": "^0.2.1",
40
+ "@stdlib/math-base-tools-sum-series": "^0.2.1",
41
+ "@stdlib/utils-define-read-only-property": "^0.2.1"
88
42
  },
43
+ "devDependencies": {},
89
44
  "engines": {
90
45
  "node": ">=0.10.0",
91
46
  "npm": ">2.7.0"
package/CITATION.cff DELETED
@@ -1,30 +0,0 @@
1
- cff-version: 1.2.0
2
- title: stdlib
3
- message: >-
4
- If you use this software, please cite it using the
5
- metadata from this file.
6
-
7
- type: software
8
-
9
- authors:
10
- - name: The Stdlib Authors
11
- url: https://github.com/stdlib-js/stdlib/graphs/contributors
12
-
13
- repository-code: https://github.com/stdlib-js/stdlib
14
- url: https://stdlib.io
15
-
16
- abstract: |
17
- Standard library for JavaScript and Node.js.
18
-
19
- keywords:
20
- - JavaScript
21
- - Node.js
22
- - TypeScript
23
- - standard library
24
- - scientific computing
25
- - numerical computing
26
- - statistical computing
27
-
28
- license: Apache-2.0 AND BSL-1.0
29
-
30
- date-released: 2016