forked from CABrouwers/node-red-contrib-telnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 825 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
{
"name": "node-red-contrib-telnet-client",
"version": "1.0.4",
"description": "bi-directional telnet client connection",
"main": "index.js",
"dependencies": {
"node-fetch": "^2.6.0",
"openpromise": "^2.3.3",
"telnet-engine": "^1.2.5"
},
"devDependencies": {},
"scripts": {},
"author": "Charles A Brouwers",
"license": "ISC",
"bugs": {
"url": "https://github.com/CABrouwers/node-red-contrib-telnet/issues"
},
"homepage": "https://github.com/CABrouwers/node-red-contrib-telnet",
"keywords": [
"telnet",
"node-red"
],
"node-red": {
"nodes": {
"telnet-connection": "telnet-connection.js",
"telnet-read": "telnet-read.js",
"telnet-send": "telnet-send.js",
"telnet-request": "telnet-request.js",
"telnet-echo": "telnet-echo.js"
}
}
}