-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 KB
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
{
"name": "storage-queue-node-getting-started",
"author": {
"name": "Microsoft Corporation"
},
"version": "0.0.1",
"description": "Basic Operations with Azure Storage Queue Service",
"tags": [
"azure",
"storage",
"sample"
],
"keywords": [
"node",
"azure",
"storage"
],
"main": "./queueSample.js",
"engines": {
"node": ">= 0.8.26"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Azure-Samples/storage-queue-node-getting-started/blob/master/LICENSE"
}
],
"dependencies": {
"request": "~2.69.0",
"azure-storage": "0.10.0"
},
"devDependencies": {
"jshint": ">= 2.1.4"
},
"homepage": "https://github.com/Azure-Samples/storage-queue-node-getting-started",
"repository": {
"type": "git",
"url": "git@github.com:Azure-Samples/storage-queue-node-getting-started.git"
},
"bugs": {
"url": "https://github.com/Azure-Samples/storage-queue-node-getting-started/issues"
},
"scripts": {
"check": "jshint queueSample.js"
},
"readmeFilename": "README.md"
}