tasks-without-labels.json

 1{
 2  "version": "2.0.0",
 3  "tasks": [
 4    {
 5      "type": "npm",
 6      "script": "start"
 7    },
 8    {
 9      "label": "Explicit Label",
10      "type": "npm",
11      "script": "test"
12    },
13    {
14      "type": "gulp",
15      "task": "build"
16    },
17    {
18      "type": "shell",
19      "command": "echo hello"
20    }
21  ]
22}