ntpclient 1.1.3 → 1.1.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 (3) hide show
  1. package/README.md +1 -1
  2. package/cli.js +0 -0
  3. package/package.json +13 -52
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # NTPClient [![Build Status](https://github.com/ffflorian/ntpclient/workflows/Build/badge.svg)](https://github.com/ffflorian/ntpclient/actions/) [![npm version](https://img.shields.io/npm/v/ntpclient.svg?style=flat)](https://www.npmjs.com/package/ntpclient)
1
+ # NTPClient [![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/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -4,40 +4,12 @@
4
4
  "ntpclient": "cli.js"
5
5
  },
6
6
  "dependencies": {
7
- "commander": "9.4.1"
7
+ "commander": "10.0.0"
8
8
  },
9
9
  "description": "A TypeScript implementation of the NTP Client Protocol",
10
10
  "devDependencies": {
11
- "@evilmartians/lefthook": "1.2.1",
12
- "@ffflorian/eslint-config": "0.8.3",
13
- "@ffflorian/prettier-config": "0.1.4",
14
- "@ffflorian/semantic-release-config": "0.5.2",
15
- "@semantic-release/changelog": "6.0.1",
16
- "@semantic-release/git": "10.0.1",
17
- "@types/jasmine": "4.3.0",
18
- "@types/node": "~16",
19
- "@typescript-eslint/eslint-plugin": "5.43.0",
20
- "@typescript-eslint/parser": "5.43.0",
21
- "babel-eslint": "10.1.0",
22
- "cpx": "1.5.0",
23
- "eslint": "7.32.0",
24
- "eslint-config-prettier": "8.5.0",
25
- "eslint-plugin-import": "2.26.0",
26
- "eslint-plugin-jasmine": "4.1.3",
27
- "eslint-plugin-jsdoc": "39.6.2",
28
- "eslint-plugin-no-unsanitized": "4.0.1",
29
- "eslint-plugin-prettier": "4.2.1",
30
- "eslint-plugin-simple-import-sort": "8.0.0",
31
- "eslint-plugin-sort-keys-fix": "1.1.2",
32
- "eslint-plugin-typescript-sort-keys": "2.1.0",
33
- "eslint-plugin-unused-imports": "1.1.5",
34
- "jasmine": "4.5.0",
35
- "prettier": "2.7.1",
36
- "publish-flat": "1.4.1",
37
- "rimraf": "3.0.2",
38
- "semantic-release": "19.0.5",
39
- "ts-node": "10.9.1",
40
- "typescript": "4.9.3"
11
+ "rimraf": "4.1.2",
12
+ "typescript": "4.9.5"
41
13
  },
42
14
  "engines": {
43
15
  "node": ">= 10.9"
@@ -54,29 +26,18 @@
54
26
  "license": "GPL-3.0",
55
27
  "main": "index.js",
56
28
  "name": "ntpclient",
57
- "prettier": "@ffflorian/prettier-config",
58
- "release": {
59
- "extends": "@ffflorian/semantic-release-config"
29
+ "publishConfig": {
30
+ "directory": "flattened"
60
31
  },
61
- "repository": "https://github.com/ffflorian/ntpclient.git",
32
+ "repository": "https://github.com/ffflorian/node-packages/tree/main/packages/ntpclient",
62
33
  "scripts": {
63
- "build:ts": "tsc",
64
- "clear": "rimraf dist",
65
- "copy:source": "cpx \"src/*.ts\" flattened",
66
- "dist": "yarn clear && yarn build:ts",
67
- "fix": "yarn fix:other && yarn fix:ts",
68
- "fix:other": "yarn prettier --write",
69
- "fix:ts": "yarn lint:ts --fix && yarn lint:ts:spec --fix",
70
- "flatten": "publish-flat -o flattened && yarn copy:source",
71
- "lint": "yarn lint:ts && yarn lint:ts:spec && yarn lint:other",
72
- "lint:other": "yarn prettier --list-different",
73
- "lint:ts": "eslint --ignore-path .gitignore --ext .ts src/",
74
- "lint:ts:spec": "eslint --ignore-path .gitignore --ext .ts --config .eslintrc.spec.json spec/",
75
- "postversion": "node ../node_modules/publish-flat/cli-copy.js -i package.json -o ../package.json version",
76
- "prettier": "prettier \"*.{json,md,yml}\"",
77
- "release": "semantic-release",
34
+ "build": "tsc",
35
+ "clean": "rimraf dist",
36
+ "dist": "yarn clean && yarn build",
37
+ "flatten": "node ../publish-flat/dist/cli.js -o flattened",
38
+ "postversion": "node ../publish-flat/dist/cli-copy.js -o flattened/package.json version",
78
39
  "start": "ts-node src/cli.ts",
79
- "test": "ts-node -P tsconfig.jasmine.json node_modules/.bin/jasmine"
40
+ "test": "ts-node -P tsconfig.jasmine.json ../../node_modules/.bin/jasmine"
80
41
  },
81
- "version": "1.1.3"
42
+ "version": "1.1.4"
82
43
  }