-
Notifications
You must be signed in to change notification settings - Fork 338
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "testbed",
"description": "testbed",
"version": "0.1.0",
"publisher": "vscode",
"engines": {
"vscode": "^1.33.0"
},
"main": "./client/out/extension.js",
"activationEvents": [
"*"
],
"enabledApiProposals": [
],
"contributes": {
"commands": [
{
"command": "testbed.openFile",
"title": "Open Test File"
},
{
"command": "testbed.fileWithContent",
"title": "Open file with dynamic content"
},
{
"command": "testbed.refreshContent",
"title": "Refresh dynamic content"
}
],
"configuration": {
"type": "object",
"title": "TestBed configuration",
"properties": {
"testbed.enable": {
"type": "boolean",
"default": true,
"description": "Control whether eslint is enabled for JavaScript files or not."
},
"testbed.options": {
"type": "object",
"default": {},
"description": "The eslint options object to provide args to the eslint command."
}
}
}
},
"scripts": {
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"compile": "tsc -b",
"clean": "tsc -b --clean",
"watch": "tsc -b -w"
}
}