ts-node-client 2.1.2 → 2.1.3

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ # ts-node-client
2
+
3
+ ## Changelog
4
+
5
+ All notable changes to this project will be documented in this file.
6
+
7
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
+
10
+
11
+ ## 2.1.3 - 2022-12-26
12
+
13
+ ### Changed
14
+ * Migrate versions of dependencies
package/README.md CHANGED
@@ -90,6 +90,7 @@ You should upgrade to 2.* versions of ts-node-client
90
90
 
91
91
  #### 2.1.*
92
92
  - Migrate 1.6.* - 1.8.* changes to version 2.1
93
+ - Bump dependencies
93
94
 
94
95
  #### 2.0.*
95
96
  - Support new scan tool and fix problem with programmatic API for >= npm@8.0.0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ts-node-client",
3
3
  "description": "npm / node module to transfer dependency information to TrustSource server.",
4
- "version": "2.1.2",
4
+ "version": "2.1.3",
5
5
  "private": false,
6
6
  "homepage": "https://app.trustsource.io/",
7
7
  "author": {
@@ -30,19 +30,19 @@
30
30
  "precommit": "npm run lint && npm run test"
31
31
  },
32
32
  "dependencies": {
33
- "npm": "6.14.17",
34
- "axios": "0.26.1",
33
+ "npm": "6.14.18",
34
+ "axios": "1.2.1",
35
35
  "debuglog": "1.0.1",
36
- "semver": "7.3.5",
37
- "yargs": "^17.5.0"
36
+ "semver": "7.3.8",
37
+ "yargs": "17.6.2"
38
38
  },
39
39
  "devDependencies": {
40
- "eslint": "^8.15.0",
41
- "eslint-config-airbnb-base": "^15.0.0",
42
- "eslint-plugin-import": "^2.26.0",
43
- "eslint-plugin-sonarjs": "^0.13.0",
44
- "mocha": "^9.2.2",
45
- "nock": "^12.0.3"
40
+ "eslint": "8.30.0",
41
+ "eslint-config-airbnb-base": "15.0.0",
42
+ "eslint-plugin-import": "2.26.0",
43
+ "eslint-plugin-sonarjs": "0.17.0",
44
+ "mocha": "10.2.0",
45
+ "nock": "13.2.9"
46
46
  },
47
47
  "keywords": [
48
48
  "node",
@@ -9,7 +9,7 @@
9
9
 
10
10
 
11
11
  const assert = require('assert');
12
- const util = require('util');
12
+ const util = require('util');
13
13
 
14
14
  const SHOULD_CONTAIN = 'should contain \'name\' and \'message\' fields';
15
15