-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.38 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.38 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
{
"name": "odatatools",
"displayName": "OData Client Generator",
"description": "Tools for generating clients for OData Webservices",
"version": "2.0.1",
"publisher": "apazureck",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:odatatools.GetInterfaces",
"onCommand:odatatools.UpdateInterfaces",
"onCommand:odatatools.GetProxy",
"onCommand:odatatools.UpdateProxy"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "odatatools.GetInterfaces",
"category": "OData",
"title": "Create Interfaces from OData V4.0 Service",
"icon": "images/odata.png"
},
{
"command": "odatatools.UpdateInterfaces",
"category": "OData",
"title": "Update Interfaces from OData V4.0 Service",
"icon": "images/odata.png"
},
{
"command": "odatatools.GetProxy",
"category": "OData",
"title": "Create proxy client from OData V4.0 Service",
"icon": "images/odata.png"
},
{
"command": "odatatools.UpdateProxy",
"category": "OData",
"title": "Update proxy client from OData V4.0 Service",
"icon": "images/odata.png"
}
],
"configuration": {
"properties": {
"odatatools.insiders": {
"type": "boolean",
"default": false,
"description": "Sets the extension in insiders mode and makes [Insiders] features usable. See changelog for functions in insiders mode."
},
"odatatools.version": {
"type": "string",
"default": "2.0",
"description": "For legacy reasons. To use old behavior set to version '0.4'. See extension description for more details.",
"enum": [
"2.0",
"1.0",
"0.4"
]
},
"odatatools.recentlyUsedLength": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 20,
"description": "Length of recently used server addresses (This does not have any effect yet, hopefully in later vscode releases)"
},
"odatatools.logLevel": {
"type": "string",
"default": "Info",
"enum": [
"Trace",
"Debug",
"Info",
"Warning",
"Error",
"Fatal"
],
"description": "The loglevel to use in the output window"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/fs-extra": "4.0.5",
"@types/handlebars": "4.0.36",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "2.2.44",
"@types/ncp": "2.0.1",
"@types/node": "8.0.55",
"@types/request": "^2.0.9",
"assert": "1.4.1",
"jasmine-core": "2.8.0",
"mocha": "4.0.1",
"qunitjs": "2.4.1",
"typescript": "2.6.2"
},
"dependencies": {
"fs-extra": "4.0.3",
"handlebars": "4.0.11",
"linq-es2015": "2.4.29",
"ncp": "2.0.0",
"node-rest-client": "3.1.0",
"request": "2.83.0",
"vscode": "1.1.10",
"xml2js": "0.4.19",
"mkdirp": "0.5.1"
},
"author": {
"email": "andreas@pazureck.de",
"name": "Andreas Pazureck"
},
"keywords": [
"oData",
"proxyclient"
],
"preview": true,
"galleryBanner": {
"color": "white",
"theme": "light"
},
"license": "MIT",
"bugs": "https://github.com/apazureck/odatatools/issues",
"repository": "https://github.com/apazureck/odatatools",
"icon": "images/odata.png"
}