forked from symphonicc/multer-azure-blob-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "multer-blob-storage",
"version": "1.1.1",
"description": "ES5/6 & Typescript friendly multer storage engine for Azure's blob storage.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"prebuild": "npm run lint",
"build": "tsc",
"test": "echo \"Write some tests\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/daniyel/multer-blob-storage.git"
},
"bugs": {
"url": "https://github.com/daniyel/multer-blob-storage/issues"
},
"keywords": [
"multer",
"azure",
"express",
"file upload",
"azure storage",
"blob",
"typescript",
"ES5",
"ES6"
],
"author": "Danijel H",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "14.17.27",
"@types/uuid": "8.3.1",
"tslint": "6.1.3",
"typescript": "4.4.4"
},
"dependencies": {
"@types/multer": "1.4.7",
"azure-storage": "2.10.5",
"express": "4.17.1",
"multer": "1.4.3",
"path": "0.12.7",
"uuid": "8.3.2"
}
}