node-red-contrib-arithmetic 1.0.0 → 1.0.1
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 +47 -47
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "node-red-contrib-arithmetic",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Performs arithmetic operations (
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/Wobi848/node-red-contrib-rpo-suite.git"
|
|
8
|
-
},
|
|
9
|
-
"bugs": {
|
|
10
|
-
"url": "https://github.com/Wobi848/node-red-contrib-rpo-suite/issues"
|
|
11
|
-
},
|
|
12
|
-
"files": [
|
|
13
|
-
"arithmetic.js",
|
|
14
|
-
"arithmetic.html",
|
|
15
|
-
"locales",
|
|
16
|
-
"examples"
|
|
17
|
-
],
|
|
18
|
-
"keywords": [
|
|
19
|
-
"node-red",
|
|
20
|
-
"arithmetic",
|
|
21
|
-
"math",
|
|
22
|
-
"add",
|
|
23
|
-
"subtract",
|
|
24
|
-
"multiply",
|
|
25
|
-
"divide",
|
|
26
|
-
"calculator"
|
|
27
|
-
],
|
|
28
|
-
"author": "sr.rpo",
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"node-red": {
|
|
31
|
-
"version": "
|
|
32
|
-
"nodes": {
|
|
33
|
-
"arithmetic": "arithmetic.js"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"engines": {
|
|
37
|
-
"node": ">=14.0.0"
|
|
38
|
-
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"test": "mocha \"test/**/*_spec.js\" --exit"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"mocha": "^10.2.0",
|
|
44
|
-
"node-red": "^3.1.0",
|
|
45
|
-
"node-red-node-test-helper": "^0.3.6"
|
|
46
|
-
}
|
|
47
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "node-red-contrib-arithmetic",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Performs arithmetic operations (+,-,\u00c3\u2014,\u00c3\u00b7,%,^) on two numeric inputs",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/Wobi848/node-red-contrib-rpo-suite.git"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/Wobi848/node-red-contrib-rpo-suite/issues"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"arithmetic.js",
|
|
14
|
+
"arithmetic.html",
|
|
15
|
+
"locales",
|
|
16
|
+
"examples"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"node-red",
|
|
20
|
+
"arithmetic",
|
|
21
|
+
"math",
|
|
22
|
+
"add",
|
|
23
|
+
"subtract",
|
|
24
|
+
"multiply",
|
|
25
|
+
"divide",
|
|
26
|
+
"calculator"
|
|
27
|
+
],
|
|
28
|
+
"author": "sr.rpo",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"node-red": {
|
|
31
|
+
"version": ">=4.0.0",
|
|
32
|
+
"nodes": {
|
|
33
|
+
"arithmetic": "arithmetic.js"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=14.0.0"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"test": "mocha \"test/**/*_spec.js\" --exit"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"mocha": "^10.2.0",
|
|
44
|
+
"node-red": "^3.1.0",
|
|
45
|
+
"node-red-node-test-helper": "^0.3.6"
|
|
46
|
+
}
|
|
47
|
+
}
|