This repository was archived by the owner on Sep 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.61 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.61 KB
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
80
81
82
83
84
{
"name": "vscode-cmis",
"author": {
"name": "Patrick Lussan",
"email": "lussanp@gmail.com"
},
"displayName": "CMIS FileSystem",
"description": "Enable access to ECMs supporting CMIS",
"version": "0.0.1",
"repository": {
"url": "https://github.com/plus-/vscode-cmis.git",
"type": "git"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onFileSystem:cmis"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "cmis.open",
"title": "Open via CMIS",
"category": "CMIS FileSystem"
},
{
"command": "cmis.refresh",
"title": "Refresh",
"category": "CMIS FileSystem"
},
{
"command": "cmis.checkout",
"title": "CheckOut",
"category": "CMIS FileSystem",
"enablement": "resourceScheme == cmis"
},
{
"command": "cmis.cancelCheckout",
"title": "Cancel CheckOut",
"category": "CMIS FileSystem"
},
{
"command": "cmis.checkin",
"title": "CheckIn",
"category": "CMIS FileSystem"
}
],
"menus": {
"editor/title": [
{
"command": "cmis.open",
"group": "CMIS"
}
],
"explorer/context": [
{
"command": "cmis.refresh",
"when": "resourceScheme == cmis",
"group": "CMIS@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"cmis": "^1.0.1"
},
"devDependencies": {
"@types/node": "^7.0.43",
"tslint": "^5.11.0",
"typescript": "^2.5.2",
"vscode": "^1.1.17"
}
}