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.1 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-azure-blob-storage",
"version": "1.0.3",
"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 \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Sliverb/multer-azure-blob-storage.git"
},
"bugs": {
"url": "https://github.com/Sliverb/multer-azure-blob-storage/issues"
},
"keywords": [
"multer",
"azure",
"express",
"file upload",
"azure storage",
"blob",
"typescript",
"ES5",
"ES6"
],
"author": "Bayo O",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^6.0.45",
"@types/uuid": "^3.4.3",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"dependencies": {
"@types/multer": "^1.3.6",
"azure-storage": "^2.6.0",
"express": "^4.16.3",
"multer": "^1.3.0",
"path": "^0.12.7",
"uuid": "^3.2.1"
}
}