@stdlib/math-base-special-exp 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -36
package/README.md CHANGED
@@ -258,8 +258,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
258
258
  [npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-exp.svg
259
259
  [npm-url]: https://npmjs.org/package/@stdlib/math-base-special-exp
260
260
 
261
- [test-image]: https://github.com/stdlib-js/math-base-special-exp/actions/workflows/test.yml/badge.svg?branch=v0.2.0
262
- [test-url]: https://github.com/stdlib-js/math-base-special-exp/actions/workflows/test.yml?query=branch:v0.2.0
261
+ [test-image]: https://github.com/stdlib-js/math-base-special-exp/actions/workflows/test.yml/badge.svg?branch=v0.2.1
262
+ [test-url]: https://github.com/stdlib-js/math-base-special-exp/actions/workflows/test.yml?query=branch:v0.2.1
263
263
 
264
264
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-exp/main.svg
265
265
  [coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-exp?branch=main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-base-special-exp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Natural exponential function.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -15,22 +15,15 @@
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
  "scripts": "./scripts",
24
22
  "src": "./src",
25
- "test": "./test"
23
+ "dist": "./dist"
26
24
  },
27
25
  "types": "./docs/types",
28
- "scripts": {
29
- "test": "make test",
30
- "test-cov": "make test-cov",
31
- "examples": "make examples",
32
- "benchmark": "make benchmark"
33
- },
26
+ "scripts": {},
34
27
  "homepage": "https://stdlib.io",
35
28
  "repository": {
36
29
  "type": "git",
@@ -40,33 +33,15 @@
40
33
  "url": "https://github.com/stdlib-js/stdlib/issues"
41
34
  },
42
35
  "dependencies": {
43
- "@stdlib/constants-float64-ninf": "^0.2.0",
44
- "@stdlib/constants-float64-pinf": "^0.2.0",
45
- "@stdlib/math-base-assert-is-nan": "^0.2.0",
46
- "@stdlib/math-base-napi-unary": "^0.2.0",
47
- "@stdlib/math-base-special-ldexp": "^0.2.0",
48
- "@stdlib/math-base-special-trunc": "^0.2.0",
49
- "@stdlib/utils-library-manifest": "^0.2.0"
50
- },
51
- "devDependencies": {
52
- "@stdlib/constants-float64-eps": "^0.1.1",
53
- "@stdlib/fs-read-file": "^0.1.1",
54
- "@stdlib/fs-write-file": "^0.1.1",
55
- "@stdlib/math-base-special-abs": "^0.1.1",
56
- "@stdlib/math-base-tools-evalpoly-compile": "^0.1.0",
57
- "@stdlib/math-base-tools-evalpoly-compile-c": "^0.1.0",
58
- "@stdlib/random-base-randu": "^0.1.0",
59
- "@stdlib/string-format": "^0.2.0",
60
- "@stdlib/string-substring-after": "^0.1.0",
61
- "@stdlib/string-substring-before": "^0.2.0",
62
- "@stdlib/time-current-year": "^0.1.1",
63
- "@stdlib/utils-try-require": "^0.2.0",
64
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
65
- "istanbul": "^0.4.1",
66
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
67
- "@stdlib/bench-harness": "^0.2.0",
68
- "@stdlib/bench": "^0.3.1"
36
+ "@stdlib/constants-float64-ninf": "^0.2.1",
37
+ "@stdlib/constants-float64-pinf": "^0.2.1",
38
+ "@stdlib/math-base-assert-is-nan": "^0.2.1",
39
+ "@stdlib/math-base-napi-unary": "^0.2.1",
40
+ "@stdlib/math-base-special-ldexp": "^0.2.1",
41
+ "@stdlib/math-base-special-trunc": "^0.2.1",
42
+ "@stdlib/utils-library-manifest": "^0.2.1"
69
43
  },
44
+ "devDependencies": {},
70
45
  "engines": {
71
46
  "node": ">=0.10.0",
72
47
  "npm": ">2.7.0"