-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "devServer",
"displayName": "devServer",
"description": "a lightweight webServer for developer,which support auto launches browser, livereload,as local mock server.",
"version": "0.0.4",
"publisher": "ihuke",
"engines": {
"vscode": "^1.4.0"
},
"Repository": {
"type": "git",
"url": "https://github.com/ihuke/developmentServer.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:server.start",
"onCommand:server.startWithBar",
"onCommand:server.stop",
"onCommand:server.restart",
"onCommand:server.open",
"onCommand:server.startLive",
"onCommand:server.stopLive"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "server.start",
"title": "devServer: Start"
},
{
"command": "server.startWithBar",
"title": "devServer: StartWithBar"
},
{
"command": "server.stop",
"title": "devServer: Stop"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"csserror": "^2.0.2",
"express": "^4.14.0",
"gaze": "^1.1.1",
"less": "^2.7.1",
"node-watch": "^0.5.5",
"open": "0.0.5",
"ws": "^1.1.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"vscode": "^0.11.0"
}
}