UNPKG

521 BJSONView Raw
1{
2 // See http://go.microsoft.com/fwlink/?LinkId=733558
3 // for the documentation about the tasks.json format
4 "version": "0.1.0",
5 "command": "npm",
6 "isShellCommand": true,
7 "showOutput": "always",
8 "suppressTaskName": true,
9 "tasks": [
10 {
11 "taskName": "install",
12 "args": ["install"]
13 },
14 {
15 "taskName": "update",
16 "args": ["update"]
17 },
18 {
19 "taskName": "lint",
20 "args": ["run", "lint"]
21 },
22 {
23 "taskName": "test",
24 "args": ["test"],
25 "isTestCommand": true,
26 "isBuildCommand": false
27 }
28 ]
29}
\No newline at end of file