2017-04-14 13:19:32 +00:00
|
|
|
{
|
|
|
|
"name": "grunt",
|
|
|
|
"publisher": "vscode",
|
|
|
|
"description": "Extension to add Grunt capabilities to VSCode.",
|
|
|
|
"displayName": "Grunt support for VSCode",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "*"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2017-05-19 15:35:08 +00:00
|
|
|
"compile": "gulp compile-extension:grunt",
|
|
|
|
"watch": "gulp watch-extension:grunt"
|
2017-04-14 13:19:32 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-25 20:13:24 +00:00
|
|
|
"vscode-nls": "^3.1.2"
|
2017-04-14 13:19:32 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-10-04 09:24:02 +00:00
|
|
|
"@types/node": "7.0.43"
|
2017-04-14 13:19:32 +00:00
|
|
|
},
|
|
|
|
"main": "./out/main",
|
|
|
|
"activationEvents": [
|
2017-05-29 12:50:16 +00:00
|
|
|
"onCommand:workbench.action.tasks.runTask"
|
2017-04-14 13:19:32 +00:00
|
|
|
],
|
|
|
|
"contributes": {
|
|
|
|
"configuration": {
|
|
|
|
"id": "grunt",
|
|
|
|
"type": "object",
|
|
|
|
"title": "Grunt",
|
|
|
|
"properties": {
|
|
|
|
"grunt.autoDetect": {
|
2017-09-15 11:36:45 +00:00
|
|
|
"scope": "resource",
|
2017-04-14 13:19:32 +00:00
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"off",
|
|
|
|
"on"
|
|
|
|
],
|
|
|
|
"default": "on",
|
|
|
|
"description": "%config.grunt.autoDetect%"
|
|
|
|
}
|
|
|
|
}
|
2017-06-21 21:44:32 +00:00
|
|
|
},
|
2017-06-27 19:38:56 +00:00
|
|
|
"taskDefinitions": [
|
2017-06-21 21:44:32 +00:00
|
|
|
{
|
2017-06-22 15:03:52 +00:00
|
|
|
"type": "grunt",
|
2017-06-21 21:44:32 +00:00
|
|
|
"required": ["task"],
|
|
|
|
"properties": {
|
|
|
|
"task": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The Grunt task to customize"
|
|
|
|
},
|
|
|
|
"file": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The Grunt file that provides the task. Can be omitted."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2017-04-14 13:19:32 +00:00
|
|
|
}
|
|
|
|
}
|