-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 997 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "node-red-contrib-sma-webconnect",
"version": "0.4.0",
"description": "Node-RED node to query the web interface of SMA inverters",
"main": "main.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"files": [
"device-presets/*",
"functions.js",
"main.html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rlindner/node-red-contrib-sma-webconnect.git"
},
"keywords": [
"node-red",
"sma",
"sunny",
"boy",
"storage",
"tripower"
],
"author": "Roland Lindner",
"license": "MIT",
"bugs": {
"url": "https://github.com/rlindner/node-red-contrib-sma-webconnect/issues"
},
"homepage": "https://github.com/rlindner/node-red-contrib-sma-webconnect#readme",
"node-red": {
"nodes": {
"sma-webconnect": "main.js"
}
},
"dependencies": {
"request": "^2.88.2",
"requestretry": "^7.0.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"should": "^13.2.3"
}
}