-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.21 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.21 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "vs-solution-support",
"license": "MIT",
"displayName": "vs-solution-support",
"description": "Add project and solution managment in regards of Visual Studio",
"version": "0.0.1",
"publisher": "fforjan",
"engines": {
"vscode": "^1.12.0-insider"
},
"enableProposedApi": true,
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.vs-solution-support.buildSolution",
"title": "Solution: Build Active Solution"
},
{
"command": "extension.vs-solution-support.displayDependencies",
"title": "Solution: Display Dependencies"
},
{
"command": "extension.vs-solution-support.selectPlatform",
"title": "Solution: Select platform for build"
},
{
"command": "extension.vs-solution-support.selectConfiguration",
"title": "Solution: Selection configuration for build"
}
],
"explorer": {
"treeLabel": "Solution Explorer",
"icon": "media/dep.svg",
"treeExplorerNodeProviderId": "solutionExplorer"
},
"configuration": {
"type": "object",
"title": "solution configuration",
"properties": {
"solutionExplorer.file": {
"type": "string",
"default": null,
"description": "solution path in the folder"
},"solutionExplorer.configuration": {
"type": "string",
"default": "Debug",
"description": "solution path in the folder"
},"solutionExplorer.platform": {
"type": "string",
"default": "Any CPU",
"description": "solution path in the folder"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "echo #UNIT TESTS BROKEN, NEED VSCODE UPDATE#",
"00test": "node ./node_modules/vscode/bin/test",
"tslint": "tslint -p ./tsconfig.json"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^7.0.12",
"mocha": "^3.2.0",
"tslint": "^5.1.0",
"typescript": "^2.0.3",
"vscode": "^1.1.0"
}
}