UNPKG

basic-sftp

Version:

๐Ÿคน๐Ÿปโ€โ™€๏ธ A basic promise-based SFTP Client

53 lines (52 loc) โ€ข 1.7 kB
{ "name": "basic-sftp", "main": "./lib/index.js", "version": "0.1.2", "scripts": { "build": "rm -rf ./lib; npx tsc;", "init": "npm i --ignore-scripts;", "init:update": "npm run init; npm run update;", "update": "npx npu; npm i --ignore-scripts; npm audit fix;", "update:patch": "npm run update; npm version patch --no-git-tag-version;", "update:minor": "npm run update; npm version minor --no-git-tag-version;", "update:major": "npm run update; npm version major --no-git-tag-version;", "pretests": "docker run -d --name test-sftp --privileged -p 2222:2222 -e PORT=2222 --restart always wellwelwel/vps:latest", "tests": "npm run build && cd ./tests && rm -rf ./lib; npx tsc -p ./tsconfig.json && node ./lib;", "posttests": "cd ./tests && rm -rf ./lib; docker stop test-sftp; docker rm test-sftp" }, "dependencies": { "@types/ssh2": "^1.11.9", "ssh2": "^1.11.0" }, "devDependencies": { "packages-update": "^1.2.1", "typescript": "^5.0.4" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/wellwelwel/basic-sftp.git" }, "keywords": [ "sftp", "client", "upload", "download", "promise", "promises", "remote" ], "author": "https://github.com/wellwelwel", "bugs": { "url": "https://github.com/wellwelwel/basic-sftp/issues" }, "homepage": "https://github.com/wellwelwel/basic-sftp#readme", "description": "๐Ÿคน๐Ÿปโ€โ™€๏ธ A basic promise-based SFTP Client", "engines": { "node": ">=14.18.0 || >=16.0.0", "npm": ">=7.0.2" }, "files": [ "lib" ] }