-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 997 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
37
38
39
40
41
{
"engines": {
"node": ">= 4"
},
"main": "./lib/index",
"keywords": [
"webdav-client",
"webdav",
"client"
],
"scripts": {
"prepare": "npm run build && npm run browserify",
"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.3",
"author": "Adrien Castex <[email protected]>",
"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": {
"browserify": "^16.3.0",
"form-data": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"request": "^2.81.0",
"typescript": "^3.5.3",
"xml-js-builder": "^1.0.1"
}
}