forked from cozy/jsDAV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "@pylonide/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": "1.0.0",
"license": "MIT",
"homepage": "http://github.com/pylonide/jsDAV",
"engines": {
"node": ">= 18.18.2"
},
"author": "Sten Feldman <[email protected]>",
"contributors": [
"Mike de Boer <[email protected]>",
"Sten Feldman <[email protected]> (https://sten.pw/)"
],
"scripts": {
"test": "echo No tests specified",
"testserver": "node test/test_server.js",
"mocha": "find ./test -name '*.js' | xargs ./node_modules/mocha/bin/mocha"
},
"main": "lib/jsdav",
"repository": {
"type": "git",
"url": "http://github.com/pylonide/jsDAV.git"
},
"dependencies": {
"asyncjs": "~0.0.13",
"formidable": "~3.5.0",
"@xmldom/xmldom": "~0.8.0",
"xpath": "~0.0.32",
"moment": "~2.30.1"
},
"devDependencies": {
"chai": "~5.1.0",
"mocha": "~10.5.1",
"assert": ""
}
}