package.json 1.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
{
  "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": {
14 15
    "compile": "gulp compile-extension:grunt",
    "watch": "gulp watch-extension:grunt"
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
  },
  "dependencies": {
    "vscode-nls": "^2.0.2"
  },
  "devDependencies": {
    "@types/node": "^7.0.12"
  },
  "main": "./out/main",
  "activationEvents": [
    "onCommand:workbench.action.tasks.runTask",
    "onCommand:workbench.action.tasks.build",
    "onCommand:workbench.action.tasks.test"
  ],
  "contributes": {
    "configuration": {
      "id": "grunt",
      "type": "object",
      "title": "Grunt",
      "properties": {
        "grunt.autoDetect": {
          "type": "string",
          "enum": [
            "off",
            "on"
          ],
          "default": "on",
          "description": "%config.grunt.autoDetect%"
        }
      }
    }
  }
}