-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "@booljs/multer",
"version": "0.3.1",
"description": "RouteMiddleware to allow developers support file uploads in their APIs",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --exit test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booljs/booljs-multer.git"
},
"keywords": [
"booljs",
"multer",
"file",
"upload",
"api",
"middleware"
],
"author": "Pablo Andrés Dorado Suárez <[email protected]>",
"engines": {
"node": ">=10.0.0"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/booljs/booljs-multer/issues"
},
"homepage": "https://github.com/booljs/booljs-multer#readme",
"dependencies": {
"multer": "^1.1.0",
"serve-static": "^1.10.0",
"uuid": "^2.0.1"
},
"peerDependencies": {
"@booljs/api": "^0.6.0",
"@booljs/express": "^0.7.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"supertest": "^3.3.0",
"supertest-as-promised": "^4.0.2"
},
"publishConfig": {
"access": "public"
}
}