Skip to content

Commit 259e4af

Browse files
committed
auto bump version with release
1 parent ec44633 commit 259e4af

File tree

1 file changed

+176
-176
lines changed

1 file changed

+176
-176
lines changed

package.json

Lines changed: 176 additions & 176 deletions
Original file line numberDiff line numberDiff line change
@@ -1,178 +1,178 @@
11
{
2-
"name": "servermanager",
3-
"displayName": "InterSystems® Server Manager",
4-
"version": "0.0.3",
5-
"preview": true,
6-
"publisher": "intersystems-community",
7-
"description": "Helper extension for defining connections to InterSystems servers.",
8-
"repository": {
9-
"type": "git",
10-
"url": "https://github.com/intersystems-community/intersystems-servermanager"
11-
},
12-
"license": "MIT",
13-
"keywords": [
14-
"intersystems",
15-
"objectscript",
16-
"multi-root ready"
17-
],
18-
"engines": {
19-
"vscode": "^1.44.0",
20-
"node": "^10.2.0"
21-
},
22-
"icon": "images/logo.png",
23-
"categories": [
24-
"Other"
25-
],
26-
"contributors": [
27-
{
28-
"name": "John Murray",
29-
"email": "[email protected]"
30-
}
31-
],
32-
"private": true,
33-
"scripts": {
34-
"vscode:prepublish": "npm run compile",
35-
"package": "vsce package",
36-
"compile": "tsc -p ./",
37-
"watch": "tsc -w -p ./tsconfig.json",
38-
"pretest": "npm run compile",
39-
"test": "node ./out/test/runTest.js",
40-
"lint": "node ./node_modules/tslint/bin/tslint --project tsconfig.json -t verbose",
41-
"lint-fix": "tslint --project tsconfig.json -t verbose --fix"
42-
},
43-
"dependencies": {
44-
"@types/vscode": "^1.44.0"
45-
},
46-
"devDependencies": {
47-
"@types/glob": "^7.1.1",
48-
"@types/mocha": "^5.2.6",
49-
"@types/node": "^8.10.60",
50-
"glob": "^7.1.6",
51-
"mocha": "^7.1.2",
52-
"ts-loader": "^6.2.2",
53-
"tslint": "^5.20.1",
54-
"typescript": "^3.8.3",
55-
"vsce": "^1.75.0",
56-
"vscode-test": "^1.3.0"
57-
},
58-
"main": "./out/extension",
59-
"activationEvents": [],
60-
"contributes": {
61-
"configuration": {
62-
"title": "InterSystems® Server Manager",
63-
"properties": {
64-
"intersystems.servers": {
65-
"type": "object",
66-
"description": "InterSystems® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it.",
67-
"markdownDescription": "[InterSystems](https://www.intersystems.com)® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it. Server names may only contain characters 'A' to 'Z', 'a' to 'z', digits, '-', '.', '_' and '~' characters.",
68-
"scope": "resource",
69-
"default": {
70-
"iris": {
71-
"webServer": {
72-
"scheme": "http",
73-
"host": "127.0.0.1",
74-
"port": 52773
75-
},
76-
"description": "Connection to default local InterSystems IRIS™ installation. Delete if unwanted."
77-
},
78-
"cache": {
79-
"webServer": {
80-
"scheme": "http",
81-
"host": "127.0.0.1",
82-
"port": 57772
83-
},
84-
"description": "Connection to default local InterSystems Caché® installation. Delete if unwanted."
85-
},
86-
"ensemble": {
87-
"webServer": {
88-
"scheme": "http",
89-
"host": "127.0.0.1",
90-
"port": 57772
91-
},
92-
"description": "Connection to default local InterSystems Ensemble® installation. Delete if unwanted."
93-
},
94-
"/default": "iris"
95-
},
96-
"patternProperties": {
97-
"^[a-z0-9-._~]+$": {
98-
"type": "object",
99-
"description": "A server definition, with properties that specify how to connect to it.",
100-
"properties": {
101-
"webServer": {
102-
"type": "object",
103-
"description": "Web server publishing an InterSystems® server's web services.",
104-
"properties": {
105-
"scheme": {
106-
"type": "string",
107-
"description": "Protocol used for connections.",
108-
"enum": [
109-
"http",
110-
"https"
111-
],
112-
"default": "http"
113-
},
114-
"host": {
115-
"type": "string",
116-
"description": "Hostname or IP address of the web server. Often the same as the InterSystems® server host.",
117-
"anyOf": [
118-
{
119-
"format": "hostname"
120-
},
121-
{
122-
"format": "ipv4"
123-
},
124-
{
125-
"format": "ipv6"
126-
}
127-
],
128-
"default": "127.0.0.1"
129-
},
130-
"port": {
131-
"type": "integer",
132-
"description": "TCP port number the web server listens on.",
133-
"minimum": 1,
134-
"maximum": 65535,
135-
"default": 52773
136-
},
137-
"pathPrefix": {
138-
"type": "string",
139-
"description": "Optional prefix for the path to the resource. Only needed when one web server publishes services on behalf of multiple InterSystems® servers."
140-
}
141-
},
142-
"required": [
143-
"host",
144-
"port"
145-
],
146-
"additionalProperties": false
147-
},
148-
"username": {
149-
"type": "string",
150-
"description": "Username to connect as. If not set here it must be provided when connecting."
151-
},
152-
"password": {
153-
"type": "string",
154-
"description": "Password of username. If not set here it must be provided when connecting."
155-
},
156-
"description": {
157-
"type": "string",
158-
"description": "Optional description of the server."
159-
}
160-
},
161-
"required": [
162-
"webServer"
163-
],
164-
"additionalProperties": false
165-
}
166-
},
167-
"properties": {
168-
"/default": {
169-
"type": "string",
170-
"description": "Name of the default server."
171-
}
172-
},
173-
"additionalProperties": false
174-
}
175-
}
176-
}
177-
}
2+
"name": "servermanager",
3+
"displayName": "InterSystems® Server Manager",
4+
"version": "0.0.3-SNAPSHOT",
5+
"preview": true,
6+
"publisher": "intersystems-community",
7+
"description": "Helper extension for defining connections to InterSystems servers.",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/intersystems-community/intersystems-servermanager"
11+
},
12+
"license": "MIT",
13+
"keywords": [
14+
"intersystems",
15+
"objectscript",
16+
"multi-root ready"
17+
],
18+
"engines": {
19+
"vscode": "^1.44.0",
20+
"node": "^10.2.0"
21+
},
22+
"icon": "images/logo.png",
23+
"categories": [
24+
"Other"
25+
],
26+
"contributors": [
27+
{
28+
"name": "John Murray",
29+
"email": "[email protected]"
30+
}
31+
],
32+
"private": true,
33+
"scripts": {
34+
"vscode:prepublish": "npm run compile",
35+
"package": "vsce package",
36+
"compile": "tsc -p ./",
37+
"watch": "tsc -w -p ./tsconfig.json",
38+
"pretest": "npm run compile",
39+
"test": "node ./out/test/runTest.js",
40+
"lint": "node ./node_modules/tslint/bin/tslint --project tsconfig.json -t verbose",
41+
"lint-fix": "tslint --project tsconfig.json -t verbose --fix"
42+
},
43+
"dependencies": {
44+
"@types/vscode": "^1.44.0"
45+
},
46+
"devDependencies": {
47+
"@types/glob": "^7.1.1",
48+
"@types/mocha": "^5.2.6",
49+
"@types/node": "^8.10.60",
50+
"glob": "^7.1.6",
51+
"mocha": "^7.1.2",
52+
"ts-loader": "^6.2.2",
53+
"tslint": "^5.20.1",
54+
"typescript": "^3.8.3",
55+
"vsce": "^1.75.0",
56+
"vscode-test": "^1.3.0"
57+
},
58+
"main": "./out/extension",
59+
"activationEvents": [],
60+
"contributes": {
61+
"configuration": {
62+
"title": "InterSystems® Server Manager",
63+
"properties": {
64+
"intersystems.servers": {
65+
"type": "object",
66+
"description": "InterSystems® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it.",
67+
"markdownDescription": "[InterSystems](https://www.intersystems.com)® servers that other extensions connect to. Each property of this object names a server and holds nested properties specifying how to connect to it. Server names may only contain characters 'A' to 'Z', 'a' to 'z', digits, '-', '.', '_' and '~' characters.",
68+
"scope": "resource",
69+
"default": {
70+
"iris": {
71+
"webServer": {
72+
"scheme": "http",
73+
"host": "127.0.0.1",
74+
"port": 52773
75+
},
76+
"description": "Connection to default local InterSystems IRIS™ installation. Delete if unwanted."
77+
},
78+
"cache": {
79+
"webServer": {
80+
"scheme": "http",
81+
"host": "127.0.0.1",
82+
"port": 57772
83+
},
84+
"description": "Connection to default local InterSystems Caché® installation. Delete if unwanted."
85+
},
86+
"ensemble": {
87+
"webServer": {
88+
"scheme": "http",
89+
"host": "127.0.0.1",
90+
"port": 57772
91+
},
92+
"description": "Connection to default local InterSystems Ensemble® installation. Delete if unwanted."
93+
},
94+
"/default": "iris"
95+
},
96+
"patternProperties": {
97+
"^[a-z0-9-._~]+$": {
98+
"type": "object",
99+
"description": "A server definition, with properties that specify how to connect to it.",
100+
"properties": {
101+
"webServer": {
102+
"type": "object",
103+
"description": "Web server publishing an InterSystems® server's web services.",
104+
"properties": {
105+
"scheme": {
106+
"type": "string",
107+
"description": "Protocol used for connections.",
108+
"enum": [
109+
"http",
110+
"https"
111+
],
112+
"default": "http"
113+
},
114+
"host": {
115+
"type": "string",
116+
"description": "Hostname or IP address of the web server. Often the same as the InterSystems® server host.",
117+
"anyOf": [
118+
{
119+
"format": "hostname"
120+
},
121+
{
122+
"format": "ipv4"
123+
},
124+
{
125+
"format": "ipv6"
126+
}
127+
],
128+
"default": "127.0.0.1"
129+
},
130+
"port": {
131+
"type": "integer",
132+
"description": "TCP port number the web server listens on.",
133+
"minimum": 1,
134+
"maximum": 65535,
135+
"default": 52773
136+
},
137+
"pathPrefix": {
138+
"type": "string",
139+
"description": "Optional prefix for the path to the resource. Only needed when one web server publishes services on behalf of multiple InterSystems® servers."
140+
}
141+
},
142+
"required": [
143+
"host",
144+
"port"
145+
],
146+
"additionalProperties": false
147+
},
148+
"username": {
149+
"type": "string",
150+
"description": "Username to connect as. If not set here it must be provided when connecting."
151+
},
152+
"password": {
153+
"type": "string",
154+
"description": "Password of username. If not set here it must be provided when connecting."
155+
},
156+
"description": {
157+
"type": "string",
158+
"description": "Optional description of the server."
159+
}
160+
},
161+
"required": [
162+
"webServer"
163+
],
164+
"additionalProperties": false
165+
}
166+
},
167+
"properties": {
168+
"/default": {
169+
"type": "string",
170+
"description": "Name of the default server."
171+
}
172+
},
173+
"additionalProperties": false
174+
}
175+
}
176+
}
177+
}
178178
}

0 commit comments

Comments
 (0)