forked from nickdodd79/vscode-gulptasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 3.25 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "gulptasks",
"displayName": "Gulp Tasks",
"description": "A gulp task visualization and execution extension for Visual Studio Code",
"version": "0.0.13",
"author": {
"name": "Nick Dodd"
},
"publisher": "nickdodd79",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nickdodd79/vscode-gulptasks"
},
"engines": {
"vscode": "^1.17.0"
},
"icon": "resources/gulp-logo.png",
"categories": [
"Other"
],
"activationEvents": [
"onView:gulptasks"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"title": "Gulp Tasks configuration",
"properties": {
"gulptasks.file": {
"type": "string",
"default": "",
"description": "Specifies an extact gulp file to load. If the files doesn't exist, the discovery process resumes."
},
"gulptasks.runInTerminal": {
"type": "boolean",
"default": false,
"description": "Specifies whether gulp tasks are run in a terminal. Otherwise an output window is used."
},
"gulptasks.discovery.dir": {
"type": "string",
"default": "",
"description": "Specifies a directory where the gulpfile.js should be discovered."
},
"gulptasks.discovery.dirExclusions": {
"type": "array",
"default": [
"node_modules/**",
"bower_components/**"
],
"description": "Specifies glob patterns used to exclude directories from discovery. Use '*' to exclude the root gulpfile.js."
}
}
},
"views": {
"explorer": [
{
"id": "gulptasks",
"name": "Gulp Tasks"
}
]
},
"menus": {
"view/title": [
{
"command": "gulptasks.execute",
"when": "view == gulptasks",
"group": "navigation@1"
},
{
"command": "gulptasks.terminate",
"when": "view == gulptasks",
"group": "navigation@2"
},
{
"command": "gulptasks.restart",
"when": "view == gulptasks",
"group": "navigation@3"
},
{
"command": "gulptasks.refresh",
"when": "view == gulptasks",
"group": "navigation@4"
}
]
},
"commands": [
{
"command": "gulptasks.execute",
"title": "Execute Task",
"icon": {
"light": "resources/light/execute.svg",
"dark": "resources/dark/execute.svg"
}
},
{
"command": "gulptasks.terminate",
"title": "Terminate Task",
"icon": {
"light": "resources/light/terminate.svg",
"dark": "resources/dark/terminate.svg"
}
},
{
"command": "gulptasks.restart",
"title": "Restart Task",
"icon": {
"light": "resources/light/restart.svg",
"dark": "resources/dark/restart.svg"
}
},
{
"command": "gulptasks.refresh",
"title": "Refresh Tasks",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
}
]
},
"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"
},
"dependencies": {
"filehound": "^1.16.2",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/minimatch": "^3.0.1",
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"typescript": "^2.5.3",
"vscode": "^1.1.5"
}
}