@strapi/provider-upload-aws-s3 4.0.0-beta.18 → 4.0.0-beta.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +22 -22
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Your configuration is passed down to the provider. (e.g: `new AWS.S3(config)`). You can see the complete list of options [here](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#constructor-property)
|
|
6
6
|
|
|
7
|
-
See the [using a provider](https://strapi.io/
|
|
7
|
+
See the [using a provider](https://docs.strapi.io/developer-docs/latest/plugins/upload.html#using-a-provider) documentation for information on installing and using a provider. And see the [environment variables](https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/configurations/optional/environment.html#environment-variables) for setting and using environment variables in your configs.
|
|
8
8
|
|
|
9
9
|
**Example**
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -1,51 +1,51 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/provider-upload-aws-s3",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.21",
|
|
4
4
|
"description": "AWS S3 provider for strapi upload",
|
|
5
|
-
"homepage": "https://strapi.io",
|
|
6
5
|
"keywords": [
|
|
7
6
|
"upload",
|
|
8
7
|
"aws",
|
|
9
8
|
"s3",
|
|
10
9
|
"strapi"
|
|
11
10
|
],
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"main": "./lib",
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"aws-sdk": "2.892.0",
|
|
18
|
-
"lodash": "4.17.21"
|
|
11
|
+
"homepage": "https://strapi.io",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/strapi/strapi/issues"
|
|
19
14
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git://github.com/strapi/strapi.git"
|
|
22
18
|
},
|
|
19
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
23
20
|
"author": {
|
|
21
|
+
"name": "Strapi Solutions SAS",
|
|
24
22
|
"email": "hi@strapi.io",
|
|
25
|
-
"name": "Strapi team",
|
|
26
23
|
"url": "https://strapi.io"
|
|
27
24
|
},
|
|
28
25
|
"maintainers": [
|
|
29
26
|
{
|
|
30
|
-
"name": "Strapi
|
|
27
|
+
"name": "Strapi Solutions SAS",
|
|
31
28
|
"email": "hi@strapi.io",
|
|
32
29
|
"url": "https://strapi.io"
|
|
33
30
|
}
|
|
34
31
|
],
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
"
|
|
32
|
+
"main": "./lib",
|
|
33
|
+
"directories": {
|
|
34
|
+
"lib": "./lib"
|
|
38
35
|
},
|
|
39
|
-
"
|
|
40
|
-
"
|
|
36
|
+
"scripts": {
|
|
37
|
+
"test": "echo \"no tests yet\""
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"aws-sdk": "2.892.0",
|
|
41
|
+
"lodash": "4.17.21"
|
|
41
42
|
},
|
|
42
43
|
"engines": {
|
|
43
44
|
"node": ">=12.x.x <=16.x.x",
|
|
44
45
|
"npm": ">=6.0.0"
|
|
45
46
|
},
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
"test": "echo \"no tests yet\""
|
|
47
|
+
"strapi": {
|
|
48
|
+
"isProvider": true
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "dd25a85f8ea5d7b2445e0ba8fe4448087be20839"
|
|
51
51
|
}
|