forked from mikedeboer/jsDAV
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
{
"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.2.7",
"homepage": "http://github.com/mikedeboer/jsDAV",
"engines": {
"node": ">= 0.4.0"
},
"author": "Mike de Boer <[email protected]>",
"scripts": {
"test": "node test/test_server.js"
},
"main": "lib/jsdav",
"repository": {
"type": "git",
"url": "git://github.com/mikedeboer/jsDAV.git"
},
"dependencies": {
"asyncjs": "0.0.9",
"formidable": "1.0.8",
"icalendar": "0.6.3",
"jsftp": "0.2.1",
"libxmljs": "0.7.0",
"node-sftp": "0.1.1"
},
"devDependencies": {
"jasmine-node": "1.0.17"
},
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
]
}