@dsevo/modules-deploy-sftp
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "@dsevo/modules-deploy-sftp", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "DSEVO Module to deploy to SFTP servers", | ||
@@ -5,0 +5,0 @@ "license": "ISC", |
module.exports = { | ||
hostname: { | ||
label: 'Hostname', | ||
description: 'The SFTP server hostname', | ||
type: 'string', | ||
default: '', | ||
description: 'The SFTP server hostname' | ||
}, | ||
username: { | ||
label: 'Username', | ||
type: 'string', | ||
@@ -12,2 +14,3 @@ default: '' | ||
password: { | ||
label: 'Password', | ||
type: 'password', | ||
@@ -17,5 +20,11 @@ default: '' | ||
path: { | ||
label: 'Path on server', | ||
type: 'string', | ||
default: '/home' | ||
}, | ||
port: { | ||
label: 'Port', | ||
type: 'number', | ||
default: '21', | ||
} | ||
} |
856
39