-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 KB
/
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
{
"name": "@yousolution/node-red-contrib-you-tunnel-ssh",
"version": "0.0.3",
"description": "Module to create ssh tunnel for NODE-RED",
"license": "MIT",
"scripts": {
"update": "npm pack && mv yousolution-node-red-contrib-you-tunnel-ssh-$npm_package_version.tgz ./data && cd data && npm i yousolution-node-red-contrib-you-tunnel-ssh-$npm_package_version.tgz && docker-compose restart",
"test": "mocha 'test/**/*.spec.js'",
"coverage": "nyc npm run test"
},
"keywords": [
"node-red",
"ssh",
"tunnel",
"integration",
"youSolution.Cloud"
],
"author": "Andrea Trentin <[email protected]>",
"node-red": {
"version": ">=2.0.0",
"nodes": {
"openTunnel": "/nodes/openTunnel.js"
}
},
"dependencies": {
"server-destroy": "^1.0.1",
"ssh2": "^1.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yousolution-cloud/node-red-contrib-you-tunnel-ssh.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"jest": "^29.5.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.1"
}
}