This repository has been archived by the owner on Sep 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
85 lines (85 loc) · 2.74 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
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
80
81
82
83
84
85
{
"name": "csharpextensions",
"displayName": "C# Extensions",
"description": "C# IDE Extensions for VSCode",
"author": "Jonathan Channon",
"license": "SEE LICENSE IN license.txt",
"version": "1.3.0",
"publisher": "jchannon",
"engines": {
"vscode": "^1.5.0"
},
"repository": "https://github.com/jchannon/csharpextensions",
"icon": "logo.png",
"categories": [
"Languages",
"Linters",
"Snippets"
],
"activationEvents": [
"onLanguage:csharp",
"onCommand:csharpextensions.createClass",
"onCommand:csharpextensions.createInterface"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "csharpextensions.createClass",
"title": "New C# Class"
},
{
"command": "csharpextensions.createInterface",
"title": "New C# Interface"
}
],
"menus": {
"explorer/context": [
{
"group": "navigation@-1",
"command": "csharpextensions.createClass"
},
{
"group": "navigation@-1",
"command": "csharpextensions.createInterface"
}
]
},
"configuration": {
"title": "C# Extensions configuration",
"properties": {
"csharpextensions.privateMemberPrefix": {
"type": "string",
"default": "",
"description": "Prefix for generated private member declarations"
},
"csharpextensions.useThisForCtorAssignments": {
"type": "boolean",
"default": true,
"description": "Wether or not a ctor assignment of a property or variable should be prefixed with this."
},
"csharpextensions.reFormatAfterChange": {
"type": "boolean",
"default": true,
"description": "If true the document will be reformatted after codeactions are used."
}
}
}
},
"scripts": {
"vscode:prepublish": "node node_modules/typescript/bin/tsc -p ./",
"compile": "node node_modules/typescript/bin/tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"find-parent-dir": "^0.3.0",
"find-up-glob": "^1.0.0"
}
}