-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
43 lines (43 loc) · 1.28 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
{
"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.4",
"license": "MIT",
"homepage" : "http://github.com/mikedeboer/jsDAV",
"engines": {"node": ">= 0.6.0"},
"author": "Mike de Boer <[email protected]>",
"scripts": {
"test": "node test/test_server.js",
"mocha": "find ./test/postgre -name '*.js' | xargs mocha"
},
"main": "lib/jsdav",
"repository" : {
"type" : "git",
"url" : "http://github.com/mikedeboer/jsDAV.git"
},
"dependencies": {
"asyncjs": "0.0.10",
"formidable": "1.0.17",
"xmldom": "0.1.21",
"xpath": "0.0.21",
"moment": "2.11.1"
},
"optionalDependencies": {
"jsftp": "0.5.4",
"node-sftp": "0.1.1",
"dbox": "0.6.4",
"redis": "2.4.2",
"mongodb": "2.1.4",
"pg": "4.4.3",
"gnu-tools": "0.0.9"
},
"devDependencies": {
"chai": "latest",
"mocha": "",
"assert": ""
},
"licenses": [{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}]
}