mqtt-json-rpc 1.3.5 → 1.3.6

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/README.md CHANGED
@@ -250,7 +250,7 @@ CLOSE
250
250
  License
251
251
  -------
252
252
 
253
- Copyright (c) 2018-2021 Dr. Ralf S. Engelschall (http://engelschall.com/)
253
+ Copyright (c) 2018-2022 Dr. Ralf S. Engelschall (http://engelschall.com/)
254
254
 
255
255
  Permission is hereby granted, free of charge, to any person obtaining
256
256
  a copy of this software and associated documentation files (the
package/eslint.yaml CHANGED
@@ -1,6 +1,6 @@
1
1
  ##
2
2
  ## MQTT-JSON-RPC -- JSON-RPC protocol over MQTT communication
3
- ## Copyright (c) 2018-2021 Dr. Ralf S. Engelschall <rse@engelschall.com>
3
+ ## Copyright (c) 2018-2022 Dr. Ralf S. Engelschall <rse@engelschall.com>
4
4
  ##
5
5
  ## Permission is hereby granted, free of charge, to any person obtaining
6
6
  ## a copy of this software and associated documentation files (the
@@ -29,13 +29,11 @@ extends:
29
29
  - eslint-config-standard
30
30
 
31
31
  parserOptions:
32
- ecmaVersion: 8
32
+ ecmaVersion: 12
33
33
  sourceType: module
34
34
  ecmaFeatures:
35
35
  jsx: false
36
36
 
37
- parser: babel-eslint
38
-
39
37
  env:
40
38
  browser: true
41
39
  node: false
package/mqtt-json-rpc.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  ** MQTT-JSON-RPC -- JSON-RPC protocol over MQTT communication
3
- ** Copyright (c) 2018-2021 Dr. Ralf S. Engelschall <rse@engelschall.com>
3
+ ** Copyright (c) 2018-2022 Dr. Ralf S. Engelschall <rse@engelschall.com>
4
4
  **
5
5
  ** Permission is hereby granted, free of charge, to any person obtaining
6
6
  ** a copy of this software and associated documentation files (the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mqtt-json-rpc",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "JSON-RPC protocol over MQTT communication",
5
5
  "keywords": [ "json-rpc", "json", "rpc", "mqtt" ],
6
6
  "main": "./mqtt-json-rpc.js",
@@ -17,12 +17,11 @@
17
17
  "homepage": "https://github.com/rse/mqtt-json-rpc",
18
18
  "bugs": "https://github.com/rse/mqtt-json-rpc/issues",
19
19
  "devDependencies": {
20
- "babel-eslint": "10.1.0",
21
- "eslint": "7.32.0",
22
- "eslint-config-standard": "16.0.3",
23
- "eslint-plugin-import": "2.25.2",
20
+ "eslint": "8.13.0",
21
+ "eslint-config-standard": "17.0.0",
22
+ "eslint-plugin-import": "2.26.0",
24
23
  "eslint-plugin-node": "11.1.0",
25
- "mqtt": "4.2.8"
24
+ "mqtt": "4.3.7"
26
25
  },
27
26
  "peerDependencies": {
28
27
  "mqtt": ">=4.0.0"
@@ -3,17 +3,17 @@
3
3
  "version": "0.0.0",
4
4
  "description": "",
5
5
  "dependencies": {
6
- "@babel/core": "7.15.0",
7
- "mqtt": "4.2.8",
6
+ "@babel/core": "7.17.9",
7
+ "mqtt": "4.3.7",
8
8
  "mqtt-json-rpc": ".."
9
9
  },
10
10
  "devDependencies": {
11
- "grunt": "1.4.1",
11
+ "grunt": "1.5.2",
12
12
  "grunt-cli": "1.4.3",
13
13
  "grunt-browserify": "6.0.0",
14
14
  "browserify": "17.0.0",
15
15
  "babelify": "10.0.0",
16
- "@babel/preset-env": "7.15.0"
16
+ "@babel/preset-env": "7.16.11"
17
17
  },
18
18
  "scripts": {
19
19
  "build": "grunt default",