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.3 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": "10.0.0",
"description": "ssh2 sftp client for node",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tantzygames/ssh2-sftp-client"
},
"keywords": [
"sftp",
"nodejs",
"promises"
],
"scripts": {
"test": "mocha",
"coverage": "nyc npm run test",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\""
},
"engines": {
"node": ">=16.20.2"
},
"author": "Tim Cross",
"email": "[email protected]",
"contributors": [
{
"name": "见见 (original author)",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"checksum": "^1.0.0",
"dotenv": "^16.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^50.0.1",
"mocha": "^10.0.0",
"moment": "^2.29.1",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"through2": "^4.0.2",
"winston": "^3.11.0"
},
"dependencies": {
"concat-stream": "^2.0.0",
"promise-retry": "^2.0.1",
"ssh2": "github:mscdex/ssh2#ext_info"
}
}