-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
131 lines (131 loc) · 3.24 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
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
{
"name": "servicenow-sync",
"author": "Sal Costa <[email protected]> (http://anerrantprogrammer.com",
"displayName": "ServiceNow Sync",
"description": "Sync records from ServiceNow to local files using VSC",
"repository": {
"type": "git",
"url": "https://github.com/salcosta/vsc-servicenow-sync.git"
},
"version": "0.4.0",
"license": "MIT",
"publisher": "anerrantprogrammer",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "sn_sync.syncRecord"
},
{
"when": "explorerResourceIsFolder",
"command": "sn_sync.syncMultipleRecords"
},
{
"when": "explorerResourceIsFolder",
"command": "sn_sync.refreshFolder"
},
{
"when": "explorerResourceIsFolder",
"command": "sn_sync.refreshFolderQuery"
},
{
"when": "!explorerResourceIsFolder",
"command": "sn_sync.compareFile"
}
],
"editor/context": [
{
"command": "sn_sync.openRecordInBrowser",
"group": "z_commands"
}
]
},
"commands": [
{
"command": "sn_sync.syncTable",
"title": "SN Sync: Sync table"
},
{
"command": "sn_sync.enterConnectionSettings",
"title": "SN Sync: Connect to ServiceNow"
},
{
"command": "sn_sync.syncApplication",
"title": "SN Sync: Sync application"
},
{
"command": "sn_sync.enterProxySettings",
"title": "SN Sync: Enter proxy settings"
},
{
"command": "sn_sync.refreshOauthToken",
"title": "SN Sync: Refresh OAuth token"
},
{
"command": "sn_sync.syncRecord",
"title": "SN Sync: Sync record"
},
{
"command": "sn_sync.syncMultipleRecords",
"title": "SN Sync: Sync with query"
},
{
"command": "sn_sync.refreshFolder",
"title": "SN Sync: Refresh files"
},
{
"command": "sn_sync.refreshFolderQuery",
"title": "SN Sync: Refresh files with query"
},
{
"command": "sn_sync.openRecordInBrowser",
"title": "SN Sync: Open record in browser"
},
{
"command": "sn_sync.updateScope",
"title": "SN Sync: Set Scope"
},
{
"command": "sn_sync.compareFile",
"title": "SN Sync: Compare file to server"
},
{
"command": "sn_sync.evalScript",
"title": "SN Sync: Execute current file"
}
]
},
"scripts": {
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^8.5.0",
"typescript": "^2.6.1",
"vscode": "^0.9.9",
"vscode-extension-tester": "^4.2.3"
},
"dependencies": {
"diff": "^3.4.0",
"html2plaintext": "^2.0.1",
"lodash": "^4.17.4",
"open": "^8.4.0",
"request": "^2.83.0",
"sanitize-filename": "^1.6.1",
"tmp": "^0.2.1",
"url-parse": "^1.5.3",
"uuid": "^3.3.2"
}
}