-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "strapi-provider-upload-aws-s3-advanced",
"version": "5.0.1",
"description": "AWS S3 provider for strapi upload with more advanced configuration options",
"homepage": "https://strapi.io",
"keywords": [
"upload",
"aws",
"s3",
"strapi"
],
"directories": {
"lib": "./lib"
},
"main": "./lib",
"dependencies": {
"@aws-sdk/client-s3": "^3.43.0",
"@aws-sdk/lib-storage": "^3.100.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.11",
"aws-sdk-client-mock": "^2.0.1",
"aws-sdk-client-mock-jest": "^2.0.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"strapi": {
"isProvider": true
},
"author": {
"name": "Alexander Bartolomey",
"email": "occloxium@gmail.com"
},
"maintainers": [
{
"name": "Alexander Bartolomey",
"email": "occloxium@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/zoomoid/strapi-provider-upload-aws-s3-advanced.git"
},
"bugs": {
"url": "https://github.com/zoomoid/strapi-provider-upload-aws-s3-advanced/issues"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"scripts": {
"test": "jest --no-cache",
"build": "tsc",
"prepack": "tsc"
}
}