-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
49 lines (49 loc) · 1023 Bytes
/
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
{
"name": "kuduscript",
"author": "Outercurve Foundation",
"version": "1.0.17",
"description": "Tool for generating deployment scripts for Azure Websites",
"tags": [
"azure",
"deployment"
],
"keywords": [
"node",
"azure",
"deployment"
],
"main": "./bin/kuduscript.js",
"engines": {
"node": ">= 0.6.20"
},
"scripts": {
"build": "_node -c lib",
"test": "test.cmd"
},
"repository": {
"type": "git",
"url": "https://github.com/projectkudu/kuduscript.git"
},
"homepage": "http://github.com/projectkudu/kuduscript",
"bugs": {
"url": "http://github.com/projectkudu/kuduscript/issues"
},
"bin": {
"kuduscript": "./bin/kuduscript"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"readmeFilename": "README.markdown",
"dependencies": {
"commander": "~1.1.1",
"streamline": "~0.4.10"
},
"devDependencies": {
"mocha": "~1.13.0",
"should": "~1.3.0"
}
}