forked from OpenMarshal/npm-WebDAV-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"devWatch": {
"cmd": "dev",
"runs": [
{
"type": "typescript",
"browserify": false,
"configFile": "src/tsconfig.json",
"declarations": true
}
]
},
"engines": {
"node": ">= 4"
},
"main": "./lib/index",
"keywords": [
"webdav-server",
"webdav",
"server",
"virtual"
],
"scripts": {
"prepare": "npm run build",
"dev": "cd src && tsc --declaration -w",
"build": "cd src && tsc --declaration",
"lint": "tslint --project tslint.json src/**/v2/**/*.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": "webdav-server",
"version": "2.6.2",
"author": "Adrien Castex <[email protected]>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/OpenMarshal/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",
"express": "^4.16.4",
"form-data": "^3.0.0",
"request": "^2.85.0",
"safe-regex": "^1.1.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"webdav-fs": "^1.10.1",
"xml-js": "^1.4.1"
},
"types": "./lib/index.d.ts"
}