-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 962 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
{
"name": "@gdziuba/node-red-nodespect",
"version": "0.0.1",
"description": "This is a package of nodes where one can create a TCL/Expect like flow",
"engines": {
"node": ">=14"
},
"node-red" : {
"version": ">=3.0.0",
"nodes": {
"ssh-expect-execution": "nodes/ssh-command-executor.js",
"ssh-expect-close": "nodes/ssh-connection-closer.js",
"ssh-interactive": "nodes/ssh-interactive.js",
"ssh-extract-lines": "nodes/ssh-extract-lines.js",
"ssh-stringsearch": "nodes/ssh-stringsearch.js"
}
},
"dependencies": {
"ssh2": "1.15.*"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"expect",
"ssh",
"tcl"
],
"repository": {
"type": "git",
"url": "https://github.com/gdziuba/node-red-nodespect"
},
"author": {
"name": "Grey Dziuba",
"url": "https://github.com/gdziuba"
},
"license": "Apache-2.0"
}