forked from chrishasz/spgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
168 lines (168 loc) · 5.24 KB
/
package.json
File metadata and controls
168 lines (168 loc) · 5.24 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"preview": true,
"author": {
"email": "chris@sitego.co",
"name": "Chris Hasz",
"url": "https://www.sitego.co"
},
"name": "spgo",
"displayName": "SPGo",
"description": "SharePoint web development tools for Visual Studio Code.",
"keywords": [
"SharePoint",
"SharePoint Online",
"Office 365",
"o365"
],
"version": "0.10.2",
"publisher": "SiteGo",
"icon": "assets/SiteGoLogo.png",
"galleryBanner": {
"color": "#007891",
"theme": "dark"
},
"homepage": "https://github.com/ReadySiteGo/SPGo/blob/master/README.md",
"bugs": {
"url": "https://github.com/ReadySiteGo/SPGo/issues",
"email": "vscode@sitego.co"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ReadySiteGo/SPGo.git"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:SPGo.json",
"onCommand:spgo.configureWorkspace"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "spgo.checkOutFile",
"title": "SPGo: Check out the current file",
"description": "Check out the current file from the server."
},
{
"command": "spgo.configureWorkspace",
"title": "SPGo: Configure workspace",
"description": "Create the base configuration for the local SharePoint workspace"
},
{
"command": "spgo.discardCheckOut",
"title": "SPGo: Discard check out",
"description": "Discard the current file check-out and revert server file to the previous version"
},
{
"command": "spgo.populateWorkspace",
"title": "SPGo: Populate local workspace",
"description": "Populate your local workspace from the latest on the server."
},
{
"command": "spgo.publishWorkspace",
"title": "SPGo: Publish local workspace",
"description": "Publish your local workspace to the server."
},
{
"command": "spgo.publishMajor",
"title": "SPGo: Publish a major version of the current file",
"description": "Publish the current file to the server."
},
{
"command": "spgo.publishMinor",
"title": "SPGo: Publish a minor version of the current file",
"description": "Publish the current file to the server."
},
{
"command": "spgo.resetCredentials",
"title": "SPGo: Reset credentials",
"description": "Reset the current user's SharePoint credentials."
},
{
"command": "spgo.retrieveFolder",
"title": "SPGo: Retrieve folder",
"description": "Download the contents of a SharePoint folder (and subfolders) to your local workspace."
}
],
"keybindings": [
{
"key": "alt+shift+c",
"command": "spgo.checkOutFile",
"when": "editorFocus",
"win": "alt+shift+c"
},
{
"key": "alt+shift+p",
"command": "spgo.publishMajor",
"when": "editorFocus",
"win": "alt+shift+p"
},
{
"key": "alt+p",
"command": "spgo.publishMinor",
"when": "editorFocus",
"win": "alt+p"
}
],
"languages": [
{
"id": "html",
"aliases": [
"Masterpage"
],
"extensions": [
".master"
]
}
],
"menus": {
"explorer/context": [
{
"command": "spgo.publishMajor",
"group": "spgo@0"
},
{
"command": "spgo.publishMinor",
"group": "spgo@1"
},
{
"command": "spgo.checkOutFile",
"group": "spgo@2"
},
{
"command": "spgo.discardCheckOut",
"group": "spgo@3"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.1.6"
},
"dependencies": {
"colors": "^1.1.2",
"fs-extra": "^4.0.2",
"lodash": "^4.17.4",
"path": "^0.12.7",
"sp-request": "^2.1.2",
"sppull": "^2.2.2",
"spsave": "^3.0.2",
"vscode-uri": "^1.0.1"
}
}