-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "kudusync",
"author": ".NET Foundation",
"version": "0.4.0",
"description": "Tool for syncing files for deployment, will only copy changed files and delete files that doesn't exists in the destination but only if they were part of the previous deployment.",
"tags": [
"azure",
"deployment"
],
"keywords": [
"node",
"azure",
"deployment"
],
"main": "./bin/kudusync.js",
"engines": {
"node": ">= 0.6.20"
},
"scripts": {
"build": "tsc --module node --out bin/kudusync.js lib/Main.ts",
"test": "mocha -u tdd test -R spec --slow 3000 --timeout 6000"
},
"repository": {
"type": "git",
"url": "https://github.com/projectkudu/KuduSync.git"
},
"homepage": "http://github.com/projectkudu/KuduSync",
"bugs": {
"url": "http://github.com/projectkudu/KuduSync/issues"
},
"bin": {
"kudusync": "./bin/kudusync"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"readmeFilename": "README.markdown",
"devDependencies": {
"typescript": "0.8.0",
"mocha": "2.1.0",
"should": "4.6.0"
},
"dependencies": {
"q": "1.1.2",
"minimatch": "2.0.1",
"commander": "2.6.0"
}
}