forked from warrenbuckley/IIS-Express-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.71 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
{
"name": "iis-express",
"displayName": "IIS Express",
"description": "This allows you to run the current folder as a website in IIS Express",
"version": "1.1.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"
},
"homepage": "https://github.com/warrenbuckley/IIS-Express-Code",
"repository": {
"type": "git",
"url": "https://github.com/warrenbuckley/IIS-Express-Code.git"
},
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.iis-express.start",
"onCommand:extension.iis-express.stop",
"onCommand:extension.iis-express.open",
"onCommand:extension.iis-express.restart"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.iis-express.start",
"title": "IIS Express: Start Website"
},
{
"command": "extension.iis-express.stop",
"title": "IIS Express: Stop Website"
},
{
"command": "extension.iis-express.restart",
"title": "IIS Express: Restart Website"
}
],
"keybindings": [
{
"command": "extension.iis-express.start",
"key": "ctrl+f5"
},
{
"command": "extension.iis-express.stop",
"key": "shift+f5"
},
{
"command": "extension.iis-express.restart",
"key": "ctrl+shift+f5"
}
],
"jsonValidation": [
{
"fileMatch": "/.vscode/iisexpress.json",
"url": "https://raw.githubusercontent.com/warrenbuckley/IIS-Express-Code/master/src/iisexpress-schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"tslint": "^5.8.0",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"iconv-lite": "^0.4.13",
"jsonfile": "^2.2.3",
"uuid": "^3.0.1"
}
}