forked from tjanczuk/azure-sdk-tools-xplat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "azure-cli",
"author": "Microsoft Corporation",
"contributors": [
"Block, Glenn <[email protected]>",
"Cowlishaw, Mark <[email protected]>",
"Dejardin, Louis <[email protected]>",
"Georgiev, Yavor <[email protected]>",
"Janczuk, Tomasz <[email protected]>",
"Rodrigues, Andre <[email protected]>",
"Tavares, Chris <[email protected]>"
],
"version": "0.7.0",
"description": "Windows Azure Cross Platform Command Line tool",
"tags": [
"azure",
"cli"
],
"keywords": [
"node",
"azure",
"cli",
"cloud hosting",
"deployment"
],
"main": "./lib/cli.js",
"preferGlobal": "true",
"engines": {
"node": ">= 0.6.15"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"azure" : "0.7.13",
"xml2js": "0.1.x",
"xmlbuilder": "0.4.x",
"underscore": "1.4.x",
"node-uuid": "1.2.0",
"tunnel": "0.0.2",
"async": "0.2.7",
"streamline": "0.4.5",
"commander": "1.0.4",
"winston": "0.6.x",
"colors": "0.x.x",
"eyes": "0.x.x",
"easy-table": "0.0.1",
"github": "0.1.6",
"omelette": "0.1.0",
"kuduscript": "0.1.2"
},
"devDependencies": {
"mocha": ">= 1.12.0",
"jshint": ">= 2.1.4",
"sinon": "*",
"should": "*",
"nock": "0.16",
"winston-memory": "*",
"cucumber": "~0.3.0"
},
"homepage": "https://github.com/WindowsAzure/azure-sdk-tools-xplat",
"repository": {
"type": "git",
"url": "[email protected]:WindowsAzure/azure-sdk-tools-xplat.git"
},
"bugs": {
"url": "https://github.com/WindowsAzure/azure-sdk-tools-xplat/issues"
},
"scripts": {
"test": "npm -s run-script jshint && npm -s run-script unit",
"unit": "node scripts/unit.js testlist.txt",
"unit-mc": "node scripts/unit.js --mc testlistmc.txt",
"jshint": "jshint lib --jslint-reporter --extra-ext '._js'",
"preci": "jshint lib --reporter=checkstyle --extra-ext '._js' > checkstyle-result.xml",
"ci": "node scripts/unit.js testlist.txt -xunit",
"preacceptance": "node scripts/cuke-environment.js setup",
"acceptance": "node node_modules/cucumber/bin/cucumber.js",
"postacceptance": "node scripts/cuke-environment.js teardown"
},
"bin": {
"azure": "./bin/azure"
}
}