forked from compulim/vscode-express
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.32 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
{
"name": "vscode-express",
"displayName": "Express",
"description": "Hosts current workspace with Express web server",
"version": "0.0.4",
"publisher": "Compulim",
"engines": {
"vscode": "^0.10.1"
},
"icon": "icon.png",
"galleryBanner.color": "#0D5CAB",
"repository": {
"type": "git",
"url": "https://github.com/compulim/vscode-express.git"
},
"bugs": "https://github.com/compulim/vscode-express/issues/",
"homepage": "https://github.com/compulim/vscode-express/blob/master/README.md",
"keywords": [
"express",
"expressjs",
"hosting",
"web",
"web server"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:express.hostWorkspace",
"onCommand:express.hostWorkspaceAndOpenInBrowser",
"onCommand:express.hostWorkspaceWithRandomPort",
"onCommand:express.hostWorkspaceWithRandomPortAndOpenInBrowser",
"onCommand:express.openInBrowser",
"onCommand:express.stopServer",
"onCommand:express.showOutput"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "express.hostWorkspace",
"title": "Express: Host Current Workspace"
},
{
"command": "express.hostWorkspaceAndOpenInBrowser",
"title": "Express: Host Current Workspace and Open in Browser"
},
{
"command": "express.hostWorkspaceWithRandomPort",
"title": "Express: Host Current Workspace with Random Port Number"
},
{
"command": "express.hostWorkspaceWithRandomPortAndOpenInBrowser",
"title": "Express: Host Current Workspace with Random Port Number and Open in Browser"
},
{
"command": "express.openInBrowser",
"title": "Express: Open Currently Hosted Website in Browser"
},
{
"command": "express.stopServer",
"title": "Express: Stop Server"
},
{
"command": "express.showOutput",
"title": "Express: Show Output"
}
],
"configuration": {
"type": "object",
"title": "Express configuration",
"properties": {
"express.portNumber": {
"type": "number",
"default": 80,
"description": "Specifies the port number the Express server should listen to"
},
"express.omitInformationMessage": {
"type": "boolean",
"default": false,
"description": "Determines whether to omit informational messages"
},
"express.relativeRoot": {
"type": "string",
"default": null,
"description": "Specifies the path to be hosted on Express, relative to the workspace root"
},
"express.randomPortNumber.min": {
"type": "number",
"default": 8000,
"description": "Specifies the minimum port number to use for random port number"
},
"express.randomPortNumber.max": {
"type": "number",
"default": 8999,
"description": "Specifies the maximum port number to use for random port number"
},
"express.showOutput": {
"type": "boolean",
"default": true,
"description": "Determines whether to show output on server start"
}
}
}
},
"devDependencies": {
"vscode": "0.11.x"
},
"dependencies": {
"express": "^4.13.4",
"open": "0.0.5"
}
}