forked from vscode-perl/vscode-perl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.65 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vscode-perl",
"displayName": "Perl",
"description": "Perl code intelligence via ctags.",
"version": "1.18.0",
"author": "Henrik Sjööh <[email protected]> (http://www.enhenrik.nu)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vscode-perl/vscode-perl"
},
"bugs": {
"url": "https://github.com/vscode-perl/vscode-perl/issues"
},
"homepage": "https://github.com/vscode-perl/vscode-perl",
"categories": [
"Programming Languages"
],
"publisher": "henriiik",
"engines": {
"vscode": "^1.26.1"
},
"activationEvents": [
"onLanguage:perl",
"onCommand:perl.generateTags"
],
"contributes": {
"commands": [
{
"command": "perl.generateTags",
"title": "Perl: Generate Tags"
}
],
"configuration": {
"type": "object",
"title": "Perl configuration",
"properties": {
"perl.ctagsPath": {
"type": "string",
"default": "ctags",
"description": "The name or path to the ctags executable that will be used to generate tags."
},
"perl.ctagsFile": {
"type": "string",
"default": ".vstags",
"scope": "resource",
"description": "The name of the tagsfile that will be generated in your workspace."
},
"perl.perltidy": {
"type": "string",
"default": "perltidy",
"description": "The name or path to the perltidy executable that will be used when formatting code."
},
"perl.perltidyArgs": {
"type": "array",
"default": [
"-q",
"-et=4",
"-t",
"-ce",
"-l=0",
"-bar",
"-naws",
"-blbs=2",
"-mbl=2"
],
"description": "Arguments to perltidy as an array of strings, each element an argument including the leading dash."
},
"perl.perltidyContainer": {
"type": "string",
"default": "",
"description": "The name of a docker container that will be used to run perltidy. Leave blank if you dont want to use docker."
},
"perl.maxSymbolResults": {
"type": "number",
"default": 500,
"description": "Total number of symbols to return to vscode from the symbol provider. Higher numbers may decrease performance."
},
"perl.extraProjectCtagsArgs": {
"type": "array",
"default": [
"--extra=+q"
],
"description": "Additional ctags parameters to include when generating tags for the project folder."
}
}
}
},
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"vscode": "^1.1.21"
}
}