forked from theophilusx/ssh2-sftp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
53
54
55
56
{
"name": "ssh2-sftp-client",
"version": "9.0.4",
"description": "ssh2 sftp client for node",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/theophilusx/ssh2-sftp-client"
},
"keywords": [
"sftp",
"nodejs",
"promises"
],
"scripts": {
"test": "mocha",
"coverage": "nyc npm run test",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\""
},
"engines": {
"node": ">=10.24.1"
},
"author": "Tim Cross",
"email": "[email protected]",
"contributors": [
{
"name": "见见 (original author)",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"checksum": "^1.0.0",
"dotenv": "^16.0.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^45.0.2",
"mocha": "^10.0.0",
"moment": "^2.29.1",
"nyc": "^15.1.0",
"prettier": "^2.6.1",
"through2": "^4.0.2",
"winston": "^3.6.0"
},
"dependencies": {
"concat-stream": "^2.0.0",
"promise-retry": "^2.0.1",
"ssh2": "github:julian776/ssh2"
}
}