forked from warrenbuckley/IIS-Express-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "iis-express",
"displayName": "IIS Express",
"description": "This allows you to run the current folder as a website in IIS Express",
"version": "0.0.2",
"publisher": "warren-buckley",
"icon":"images/iis-icon.png",
"galleryBanner": {
"color": "#007acc",
"theme": "dark"
},
"keywords": ["IIS", "IIS Express", "Web Server"],
"bugs": {
"url": "https://github.com/warrenbuckley/IIS-Express-Code/issues",
"email": ""
},
"homepage": "https://github.com/warrenbuckley/IIS-Express-Code",
"repository": {
"type": "git",
"url": "https://github.com/warrenbuckley/IIS-Express-Code.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.iis-express"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.iis-express",
"title": "IIS Express: Run Website"
}
]},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"dependencies": {}
}