forked from cozy/jsDAV
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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.2.0",
"license": "MIT",
"homepage": "http://github.com/pylonide/jsDAV",
"engines": {
"node": ">= 22.22.2"
},
"author": "Sten Feldman <exile@chamber.ee>",
"contributors": [
"Mike de Boer <info@mikedeboer.nl>",
"Sten Feldman <exile@chamber.ee> (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.4",
"@xmldom/xmldom": "~0.9.10",
"xpath": "~0.0.34",
"moment": "~2.30.1"
},
"devDependencies": {
"chai": "~6.2.2",
"mocha": "~11.7.5",
"assert": "^2.1.0"
}
}