forked from arozar/multer-google-storage
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "multer-cloud-storage",
"version": "3.1.0",
"description": "Multer storage engine for Google Cloud Storage",
"main": "lib/index.js",
"typings": "lib/index",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npm run build && jest",
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build"
},
"keywords": [
"multer",
"node",
"gcs",
"google",
"cloud",
"storage"
],
"author": "Alexandre Steinberg",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^6.12.0",
"@types/express": "^4.17.17",
"multer": "^1.4.5-lts.1",
"urlencode": "^1.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.2",
"@types/urlencode": "^1.1.2",
"jest": "^29.6.1",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/alexandre-steinberg/multer-cloud-storage.git"
}
}