forked from Azure/azure-storage-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
49
50
51
52
53
54
55
56
57
58
{
"name": "azure-storage",
"author": "Microsoft Corporation",
"version": "0.4.3",
"description": "Microsoft Azure Storage Client Library for Node.js",
"tags": [
"azure",
"storage",
"sdk"
],
"keywords": [
"node",
"azure",
"storage"
],
"main": "./lib/azure-storage.js",
"engines": {
"node": ">= 0.8.26"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"xml2js": "0.2.7",
"xmlbuilder": "0.4.3",
"underscore": "~1.4.4",
"request": "~2.27.0",
"validator": "~3.1.0",
"mime": "~1.2.4",
"underscore": "~1.4.4",
"node-uuid": "~1.4.0",
"extend": "~1.2.1",
"readable-stream": "~1.0.0"
},
"devDependencies": {
"mocha": ">= 1.18.0",
"nock": "0.16",
"jshint": ">= 2.1.4",
"should": "1.2.x",
"grunt": "~0.4.2",
"grunt-jsdoc": "~0.5.1",
"grunt-devserver": "~0.4.1"
},
"homepage": "http://github.com/Azure/azure-storage-node",
"repository": {
"type": "git",
"url": "[email protected]:Azure/azure-storage-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-storage-node/issues"
},
"scripts": {
"test": "jshint lib & mocha --no-timeouts --recursive test"
}
}