smath 1.3.2 → 1.3.4

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 +4 -4
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- [Home](../) | [Docs](https://npm.nicfv.com/smath/) | [GitHub](https://github.com/nicfv/npm/tree/main/smath/) | [npm](https://www.npmjs.com/package/smath) | [Changelog](https://github.com/nicfv/npm/blob/main/smath//CHANGELOG.md) | [YouTube](https://www.youtube.com/@nciv) | Small math function library
1
+ [Home](https://npm.nicfv.com/) | [Docs](https://npm.nicfv.com/smath/) | [GitHub](https://github.com/nicfv/npm/tree/main/smath/) | [npm](https://www.npmjs.com/package/smath) | [Changelog](https://github.com/nicfv/npm/blob/main/smath//CHANGELOG.md) | [YouTube](https://www.youtube.com/@nciv) | Small math function library
2
2
 
3
3
  ![NPM Downloads](https://img.shields.io/npm/dt/smath)
4
4
  ![NPM Version](https://img.shields.io/npm/v/smath)
5
- ![Relative date](https://img.shields.io/date/1711214231)
5
+ ![Relative date](https://img.shields.io/date/1711218486)
6
6
  ![GitHub watchers](https://img.shields.io/github/watchers/nicfv/npm)
7
7
  ![GitHub forks](https://img.shields.io/github/forks/nicfv/npm)
8
8
  ![GitHub Repo stars](https://img.shields.io/github/stars/nicfv/npm)
@@ -12,12 +12,12 @@
12
12
  smath can be installed from the official [npm package repository](https://www.npmjs.com/package/smath). It is highly recommended to install the latest version, which is installed by default with the following command.
13
13
 
14
14
  ```shell
15
- npm i smath@1.3.2
15
+ npm i smath@1.3.4
16
16
  ```
17
17
 
18
18
  ## Bugs and Requests
19
19
 
20
- Is there a way we can make smath better? Please report all bugs, issues, and new feature requests to the [issues](https://github.com/nicfv/npm/issues) page in the [official repository](https://github.com/nicfv/npm). For critical security issues, please send an email to <smath@nicolasventura.com>.
20
+ Is there a way we can make smath better? Please report all bugs, issues, and new feature requests to the [issues](https://github.com/nicfv/npm/issues) page in the [official repository](https://github.com/nicfv/npm). For critical security issues, please send an email to <smath@nicfv.com>.
21
21
 
22
22
  ## Contribute
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smath",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "Small math function library",
5
5
  "homepage": "https://npm.nicfv.com/smath",
6
6
  "bin": "dist/bin.js",
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "build": "rm -rf dist && tsc",
15
- "test": "tsc --noEmit # tsc --outDir tmp test/index.ts && { node tmp/test/index.js ; rm -r tmp ; }",
15
+ "test": "tsc --outDir tmp --rootDir . test/index.ts && { node tmp/test/index.js ; rm -r tmp ; }",
16
16
  "clean": "rm -rf node_modules package-lock.json dist types docs",
17
17
  "docs": "rm -rf docs && typedoc --includeVersion --disableSources --hideGenerator src",
18
18
  "prepack": "npm run build",
@@ -37,8 +37,8 @@
37
37
  ],
38
38
  "author": {
39
39
  "name": "Nicolas Ventura",
40
- "email": "npm@nicolasventura.com",
41
- "url": "https://nicolasventura.com/"
40
+ "email": "npm@nicfv.com",
41
+ "url": "https://nicfv.com/"
42
42
  },
43
43
  "funding": {
44
44
  "type": "paypal",
@@ -48,6 +48,7 @@
48
48
  "license": "MIT",
49
49
  "devDependencies": {
50
50
  "@types/node": "20.11.30",
51
+ "exray": "1.0.0",
51
52
  "typedoc": "0.25.12",
52
53
  "typescript": "5.4.3"
53
54
  }