-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "multer-sftp",
"version": "1.1.1",
"description": "SFTP storage engine for multer",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc mocha test/**/*.test.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint lib test"
},
"files": [
"lib",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git://github.com/chunkai1312/multer-sftp.git"
},
"keywords": [
"multer-sftp",
"express",
"multer",
"sftp",
"ssh"
],
"author": "Chun-Kai Wang <chunkai1312@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chunkai1312/multer-sftp/issues"
},
"homepage": "https://github.com/chunkai1312/multer-sftp#readme",
"dependencies": {},
"devDependencies": {
"codecov": "^3.6.4",
"concat-stream": "^1.5.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"form-data": "^3.0.0",
"mocha": "^7.0.1",
"multer": "^1.4.2",
"nyc": "^15.0.0",
"on-finished": "^2.3.0",
"queue": "^6.0.1",
"ssh2-sftp-client": "^5.0.2"
},
"peerDependencies": {
"ssh2-sftp-client": ">=1.0.0"
}
}