forked from mikedeboer/jsDAV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "jsDAV",
"description": "jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.",
"version": "0.3.2",
"homepage" : "http://github.com/mikedeboer/jsDAV",
"engines": {"node": ">= 0.4.0"},
"author": "Mike de Boer <info@mikedeboer.nl>",
"scripts": {
"test": "node test/test_server.js"
},
"main": "lib/jsdav",
"repository" : {
"type" : "git",
"url" : "http://github.com/mikedeboer/jsDAV.git"
},
"dependencies": {
"asyncjs": "~0.0.8",
"formidable": "~1.0.11",
"xmldom": "~0.1.13",
"xpath": "~0.0.5",
"unorm": "1.0.5"
},
"optionalDependencies": {
"jsftp": "~0.5.4",
"node-sftp": "0.1.1",
"dbox": "~0.5.6",
"redis": "~0.8.2",
"mongodb": "~1.2.12",
"gnu-tools": "~0.0.9"
},
"licenses": [{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}]
}