forked from finnoconsult/strapi-provider-upload-sftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
{
"name": "strapi-provider-upload-sftp-v2",
"version": "1.0.2",
"description": "SFTP provider for Strapi CMS file upload.",
"private": false,
"strapi": {
"isProvider": true
},
"directories": {
"lib": "./lib"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git+https://github.com/finnoconsult/strapi-provider-upload-sftp"
},
"keywords": [
"sftp",
"strapi",
"provider",
"file upload"
],
"author": {
"name": "FInno Consult",
"email": "info@finnoconsult.at",
"url": "https://finnoconsult.at"
},
"contributors": [{
"name": "Márk Pap",
"email": "mark.pap@finnoconsult.at",
"url": "https://github.com/Sqveeze"
}, {
"name": "Péter Horváth",
"email": "peter.horvath@finnoconsult.at",
"url": "https://github.com/pitiboy"
}, {
"name": "Levente Máthé",
"email": "levente.mathe@finnoconsult.at",
"url": "https://github.com/leventemathefc"
}],
"bugs": {
"url": "https://github.com/finnoconsult/strapi-provider-upload-sftp/issues"
},
"license": "MIT",
"homepage": "https://github.com/finnoconsult/strapi-provider-upload-sftp#readme",
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.4.0"
},
"dependencies": {
"ssh2-sftp-client": "^2.5.0"
},
"scripts": {
"test": "jest --detectOpenHandles --forceExit --setupFiles dotenv/config",
"test:watch": "jest --detectOpenHandles --forceExit --setupFiles dotenv/config --watch"
},
"jest": {
"automock": true
}
}