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 +1 -1
- package/eslint.yaml +2 -4
- package/mqtt-json-rpc.js +1 -1
- package/package.json +5 -6
- package/sample/package.json +4 -4
package/README.md
CHANGED
|
@@ -250,7 +250,7 @@ CLOSE
|
|
|
250
250
|
License
|
|
251
251
|
-------
|
|
252
252
|
|
|
253
|
-
Copyright (c) 2018-
|
|
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-
|
|
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:
|
|
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-
|
|
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.
|
|
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
|
-
"
|
|
21
|
-
"eslint":
|
|
22
|
-
"eslint-
|
|
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.
|
|
24
|
+
"mqtt": "4.3.7"
|
|
26
25
|
},
|
|
27
26
|
"peerDependencies": {
|
|
28
27
|
"mqtt": ">=4.0.0"
|
package/sample/package.json
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
"version": "0.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@babel/core": "7.
|
|
7
|
-
"mqtt": "4.
|
|
6
|
+
"@babel/core": "7.17.9",
|
|
7
|
+
"mqtt": "4.3.7",
|
|
8
8
|
"mqtt-json-rpc": ".."
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"grunt": "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.
|
|
16
|
+
"@babel/preset-env": "7.16.11"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "grunt default",
|