-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 908 Bytes
/
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
{
"name": "blob-storage-quickstart",
"version": "1.1.0",
"description": "Learn to use Node.js to upload, download, list and delete block blobs in a container in Azure Blob storage",
"main": "index.js",
"dependencies": {
"azure-storage": "^2.8.0",
"dotenv": "^5.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {},
"scripts": {
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure-Samples/storage-blobs-node-quickstart.git"
},
"keywords": [
"Azure",
"Storage",
"Quick",
"Start",
"Blob",
"BlockBlob",
"Upload",
"Download",
"Container",
"List"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure-Samples/storage-blobs-node-quickstart/issues"
},
"homepage": "https://github.com/Azure-Samples/storage-blobs-node-quickstart#readme"
}