-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "webdav",
"displayName": "WebDAV Upload",
"description": "Uploads local files to a remote host using WebDAV",
"version": "0.0.13",
"publisher": "jorithvdheuvel",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.webdavUpload",
"title": "Upload to remote WebDAV",
"category": "WebDAV"
},
{
"command": "extension.webdavCompare",
"title": "Compare with remote WebDAV",
"category": "WebDAV"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus",
"command": "extension.webdavCompare",
"group": "webdav"
},
{
"when": "editorTextFocus",
"command": "extension.webdavUpload",
"group": "webdav"
}
]
}
},
"scripts": {
"test": "node ./out/test/runTest.js"
},
"homepage": "https://github.com/jorith88/vscode-webdav/blob/master/README.md",
"bugs": {
"url": "https://github.com/jorith88/vscode-webdav/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jorith88/vscode-webdav.git"
},
"resolutions": {
"**/event-stream": "3.3.4"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@vscode/test-electron": "^1.6.2",
"eslint": "^8.2.0",
"ts-loader": "^9.2.6",
"typescript": "^3.4.3",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"event-stream": "3.3.4",
"find-config": "^1.0.0",
"path": "^0.12.7",
"q": "^1.5.1",
"readable-stream": "^3.3.0",
"tmp": "0.1.0",
"underscore": "^1.13.1",
"webdav-fs": "^3.0.0"
}
}