forked from LouiseMcMahon/nodebb-plugin-s3-uploads
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@nodebb/nodebb-plugin-s3-uploads",
"version": "3.0.7",
"description": "A plugin for NodeBB to take file uploads and store them on S3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/NodeBB-Community/nodebb-plugin-s3-uploads.git"
},
"keywords": [
"nodebb",
"s3",
"aws",
"plugin",
"uploads"
],
"author": "Micheil Smith <micheil@kano.me>",
"contributors": [
"Barış Soner Uşaklı <barisusakli@gmail.com>",
"Joseph Chen <joseph.chen@gmail.com>",
"louise McMahon <louise@louisemcmahon.co.uk>",
"Yi Cao <yi@ycao.net>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeBB-Community/nodebb-plugin-s3-uploads/issues"
},
"nbbpm": {
"compatibility": "^3.2.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.677.0",
"gm": "~1.25.0",
"mime": "~3.0",
"request": "~2.88.2",
"uuid": "~1.4.1"
},
"devDependencies": {
"eslint": "8.x",
"eslint-config-nodebb": "0.2.1",
"eslint-plugin-import": "2.31.0"
}
}