forked from warrenbuckley/IIS-Express-Code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.05 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.05 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
{
"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 ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"@types/glob": "^8.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.21",
"@types/vscode": "^1.71.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.26.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.8.3",
"vscode-test": "^1.6.1"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"jsonfile": "^6.1.0",
"uuid": "^9.0.0"
}
}