forked from OpenMarshal/npm-WebDAV-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 823 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
36
{
"engines": {
"node": ">= 4"
},
"main": "./lib/index",
"keywords": [
"webdav-client",
"webdav",
"client"
],
"scripts": {
"dev": "cd src && tsc -w",
"browserify": "browserify lib/browser.js > lib/browserified.js",
"build": "cd src && tsc",
"test": "node test/test.js"
},
"name": "webdav-client",
"version": "1.4.2",
"author": "Adrien Castex <adrien.castex@gmail.com>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/OpenMarshal/npm-WebDAV-Client.git"
},
"description": "WebDAV Client",
"devDependencies": {
"@types/node": "^7.0.33",
"@types/request": "0.0.46",
"webdav-server": "^2.2.3"
},
"types": "./lib/index.d.ts",
"dependencies": {
"request": "^2.81.0",
"xml-js-builder": "^1.0.1"
}
}