This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
forked from OpenMarshal/npm-WebDAV-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"devWatch": {
"cmd": "dev",
"runs": [
{
"type": "typescript",
"browserify": false,
"configFile": "tsconfig.json",
"declarations": true
}
]
},
"engines": {
"node": ">= 4"
},
"main": "./lib/index",
"keywords": [
"webdav-server",
"webdav",
"server",
"virtual"
],
"scripts": {
"prepare": "npm run build",
"dev": "tsc --declaration -w",
"build": "tsc --declaration",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint-fix": "eslint . --fix --ignore-path .gitignore --ext .ts",
"test": "npm run build-test && npm run start-test",
"start-test": "node test/v2/root.js && node test/v1/root.js",
"build-test": "cd test/v2/tests.ts && tsc"
},
"name": "@hpi-schul-cloud/webdav-server",
"version": "2.7.0",
"license": "Unlicense",
"homepage": "https://github.com/hpi-schul-cloud/npm-WebDAV-Server",
"repository": {
"type": "git",
"url": "https://github.com/hpi-schul-cloud/npm-WebDAV-Server.git"
},
"description": "WebDAV Server",
"dependencies": {
"mime-types": "^2.1.18",
"xml-js-builder": "^1.0.3"
},
"devDependencies": {
"@types/mime-types": "^2.1.0",
"@types/node": "^7.0.64",
"@types/request": "0.0.44",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.16.4",
"form-data": "^3.0.0",
"prettier": "^2.2.1",
"request": "^2.85.0",
"safe-regex": "^1.1.0",
"typescript": "^3.7.2",
"webdav-fs": "^1.10.1",
"xml-js": "^1.4.1"
},
"types": "./lib/index.d.ts"
}