@stdlib/math-base-special-ceiln 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 +15 -36
package/README.md CHANGED
@@ -272,8 +272,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
272
272
  [npm-image]: http://img.shields.io/npm/v/@stdlib/math-base-special-ceiln.svg
273
273
  [npm-url]: https://npmjs.org/package/@stdlib/math-base-special-ceiln
274
274
 
275
- [test-image]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml/badge.svg?branch=v0.2.0
276
- [test-url]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml?query=branch:v0.2.0
275
+ [test-image]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml/badge.svg?branch=v0.2.1
276
+ [test-url]: https://github.com/stdlib-js/math-base-special-ceiln/actions/workflows/test.yml?query=branch:v0.2.1
277
277
 
278
278
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-ceiln/main.svg
279
279
  [coverage-url]: https://codecov.io/github/stdlib-js/math-base-special-ceiln?branch=main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-base-special-ceiln",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Round a numeric value to the nearest multiple of 10^n toward positive infinity.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -16,21 +16,14 @@
16
16
  "main": "./lib",
17
17
  "gypfile": false,
18
18
  "directories": {
19
- "benchmark": "./benchmark",
20
19
  "doc": "./docs",
21
- "example": "./examples",
22
20
  "include": "./include",
23
21
  "lib": "./lib",
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,34 +33,20 @@
40
33
  "url": "https://github.com/stdlib-js/stdlib/issues"
41
34
  },
42
35
  "dependencies": {
43
- "@stdlib/constants-float64-max-base10-exponent": "^0.2.0",
44
- "@stdlib/constants-float64-max-safe-integer": "^0.2.0",
45
- "@stdlib/constants-float64-min-base10-exponent": "^0.2.0",
36
+ "@stdlib/constants-float64-max-base10-exponent": "^0.2.1",
37
+ "@stdlib/constants-float64-max-safe-integer": "^0.2.1",
38
+ "@stdlib/constants-float64-min-base10-exponent": "^0.2.1",
46
39
  "@stdlib/constants-float64-min-base10-exponent-subnormal": "^0.2.0",
47
- "@stdlib/constants-float64-pinf": "^0.2.0",
48
- "@stdlib/math-base-assert-is-infinite": "^0.2.0",
49
- "@stdlib/math-base-assert-is-nan": "^0.2.0",
50
- "@stdlib/math-base-napi-binary": "^0.2.0",
51
- "@stdlib/math-base-special-abs": "^0.2.0",
52
- "@stdlib/math-base-special-ceil": "^0.2.0",
53
- "@stdlib/math-base-special-pow": "^0.2.0",
54
- "@stdlib/utils-library-manifest": "^0.2.0"
55
- },
56
- "devDependencies": {
57
- "@stdlib/constants-float64-eps": "^0.1.1",
58
- "@stdlib/constants-float64-ninf": "^0.1.1",
59
- "@stdlib/constants-float64-pi": "^0.1.1",
60
- "@stdlib/math-base-assert-is-negative-zero": "^0.1.1",
61
- "@stdlib/math-base-assert-is-positive-zero": "^0.1.1",
62
- "@stdlib/math-base-special-round": "^0.1.1",
63
- "@stdlib/random-base-randu": "^0.1.0",
64
- "@stdlib/utils-try-require": "^0.2.0",
65
- "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
66
- "istanbul": "^0.4.1",
67
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
68
- "@stdlib/bench-harness": "^0.2.0",
69
- "@stdlib/bench": "^0.3.1"
40
+ "@stdlib/constants-float64-pinf": "^0.2.1",
41
+ "@stdlib/math-base-assert-is-infinite": "^0.2.1",
42
+ "@stdlib/math-base-assert-is-nan": "^0.2.1",
43
+ "@stdlib/math-base-napi-binary": "^0.2.1",
44
+ "@stdlib/math-base-special-abs": "^0.2.1",
45
+ "@stdlib/math-base-special-ceil": "^0.2.1",
46
+ "@stdlib/math-base-special-pow": "^0.2.1",
47
+ "@stdlib/utils-library-manifest": "^0.2.1"
70
48
  },
49
+ "devDependencies": {},
71
50
  "engines": {
72
51
  "node": ">=0.10.0",
73
52
  "npm": ">2.7.0"