-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
{
"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"
]
}