forked from yucigou/express-middleware-minio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.06 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
{
"name": "@europepmc/express-middleware-minio",
"version": "4.0.6",
"description": "An Express middleware that helps you store files in Minio.",
"keywords": [
"express",
"middleware",
"minio"
],
"main": "src/index.js",
"scripts": {
"test": "jest --watchAll --coverage --config=./jest.config.js",
"lint": "eslint --fix ."
},
"author": "Yuci Gou <[email protected]>",
"license": "ISC",
"dependencies": {
"config": "^3.0.1",
"dotenv": "^6.2.0",
"formidable": "^1.2.1",
"minio": "^7.0.13",
"uuid": "^3.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/yucigou/express-middleware-minio.git"
},
"devDependencies": {
"bluebird": "^3.5.5",
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.17.1",
"jest": "^24.8.0",
"jest-html-reporter": "^2.5.0",
"sinon": "^7.3.2",
"supertest": "^4.0.2"
}
}