node-red-contrib-sht41 1.0.1 → 1.0.2
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/package.json +11 -4
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red-contrib-sht41",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Node-RED node to read temperature and humidity from Sensirion SHT41 sensors over I2C",
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"i2c-bus": "^5.2.2"
|
|
7
|
+
},
|
|
5
8
|
"keywords": [
|
|
6
9
|
"node-red",
|
|
7
10
|
"sht41",
|
|
@@ -10,10 +13,14 @@
|
|
|
10
13
|
"i2c",
|
|
11
14
|
"sensor"
|
|
12
15
|
],
|
|
13
|
-
"author":
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Matt Love",
|
|
18
|
+
"email": "Matt@WigglyWire.com"
|
|
19
|
+
},
|
|
14
20
|
"license": "MIT",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/WigglyWire/node-red-contrib-sht41"
|
|
17
24
|
},
|
|
18
25
|
"node-red": {
|
|
19
26
|
"nodes": {
|