ntpclient 1.1.5 → 1.1.7

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 +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # NTPClient [![npm version](https://img.shields.io/npm/v/ntpclient.svg?style=flat)](https://www.npmjs.com/package/ntpclient)
1
+ # NTPClient [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![npm version](https://img.shields.io/npm/v/ntpclient.svg?style=flat)](https://www.npmjs.com/package/ntpclient)
2
2
 
3
3
  TypeScript implementation of the NTP Client Protocol. Based on [node-ntp-client](https://github.com/moonpyk/node-ntp-client).
4
4
 
package/package.json CHANGED
@@ -8,8 +8,8 @@
8
8
  },
9
9
  "description": "A TypeScript implementation of the NTP Client Protocol",
10
10
  "devDependencies": {
11
- "rimraf": "4.1.2",
12
- "typescript": "4.9.5"
11
+ "rimraf": "4.4.1",
12
+ "typescript": "5.0.3"
13
13
  },
14
14
  "engines": {
15
15
  "node": ">= 10.9"
@@ -39,5 +39,5 @@
39
39
  "start": "ts-node src/cli.ts",
40
40
  "test": "ts-node -P tsconfig.jasmine.json ../../node_modules/.bin/jasmine"
41
41
  },
42
- "version": "1.1.5"
42
+ "version": "1.1.7"
43
43
  }