forked from Azure-Samples/storage-blob-node-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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": "storage-blob-node-getting-started",
"author": {
"name": "Microsoft Corporation"
},
"version": "0.0.1",
"description": "Basic Operations with Azure Storage Blob Service",
"tags": [
"azure",
"storage",
"sample"
],
"keywords": [
"node",
"azure",
"storage"
],
"main": "./blobSample.js",
"engines": {
"node": ">= 0.8.26"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Azure-Samples/storage-blob-node-getting-started/blob/master/LICENSE"
}
],
"dependencies": {
"node-uuid": "~1.4.0",
"request": "~2.56.0",
"azure-storage": "0.6.0"
},
"devDependencies": {
"jshint": ">= 2.1.4"
},
"homepage": "https://github.com/Azure-Samples/storage-blob-node-getting-started",
"repository": {
"type": "git",
"url": "[email protected]:Azure-Samples/storage-blob-node-getting-started.git"
},
"bugs": {
"url": "https://github.com/Azure-Samples/storage-blob-node-getting-started/issues"
},
"scripts": {
"check": "jshint blobSample.js"
},
"readmeFilename": "README.md"
}