-
Notifications
You must be signed in to change notification settings - Fork 363
/
package.json
57 lines (57 loc) · 1.88 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
{
"name": "azure-cli",
"author": "Microsoft Corporation",
"contributors": ["Block, Glenn <gblock@microsoft.com>", "Cowlishaw, Mark <markcowl@microsoft.com>", "Dejardin, Louis <loudej@microsoft.com>", "Georgiev, Yavor <yavorg@microsoft.com>", "Janczuk, Tomasz <tjanczuk@microsoft.com>", "Rodrigues, Andre <andrerod@microsoft.com>", "Tavares, Chris <ctavares@microsoft.com>"],
"version": "0.6.12",
"description": "Windows Azure Cross Platform Command Line tool",
"tags" : ["azure", "cli"],
"keywords": [ "node", "azure", "cli", "cloud hosting", "deployment" ],
"main": "./lib/cli.js",
"engines": { "node": ">= 0.6.15 < 0.9" },
"engineStrict": "true",
"licenses": [ { "type": "Apache", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ],
"dependencies": {
"azure" : "git://github.com/WindowsAzure/azure-sdk-for-node.git#dev",
"xml2js" : "0.1.x",
"qs": ">= 0.3.1",
"log": ">= 1.2.0",
"xmlbuilder": ">= 0.3.1",
"underscore": ">= 1.3.1",
"underscore.string": ">= 2.0.0",
"node-uuid": "> = 1.2.0",
"tunnel": ">= 0.0.1",
"async": ">= 0.1.18",
"streamline": ">= 0.4.5",
"commander": "1.0.4",
"winston": ">= 0.5.10",
"colors": "0.x.x",
"eyes": "0.x.x",
"easy-table": "0.0.1",
"request": ">= 2.9.203",
"validator": ">= 0.4.12",
"github": "0.1.6"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"sinon": "*",
"should": "*",
"nock": "0.13.5",
"winston-memory": "0.1.0"
},
"homepage": "https://github.com/WindowsAzure/azure-sdk-tools-xplat",
"repository": {
"type": "git",
"url": "git@github.com:WindowsAzure/azure-sdk-tools-xplat.git"
},
"bugs" : {
"url" : "https://github.com/WindowsAzure/azure-sdk-tools-xplat/issues"
},
"scripts": {
"test": "node test/runtests.js testlist.txt",
"jshint": "node test/runjshint.js"
},
"bin": {
"azure": "./bin/azure"
}
}