1
1
{
2
- "name" : " puppet-vscode" ,
3
- "displayName" : " Puppet" ,
4
- "description" : " Puppet VSCode extension" ,
5
- "version" : " 0.4.0" ,
6
- "publisher" : " jpogran" ,
7
- "license" : " SEE LICENSE IN LICENSE.txt" ,
8
- "icon" : " images/Puppet-Logo-Amber-sm.png" ,
9
- "galleryBanner" : {
10
- "color" : " #000000" ,
11
- "theme" : " dark"
12
- },
13
- "homepage" : " https://github.com/jpogran/puppet-vscode" ,
14
- "repository" : {
15
- "type" : " git" ,
16
- "url" : " https://github.com/jpogran/puppet-vscode"
17
- },
18
- "bugs" : {
19
- "type" : " git" ,
20
- "url" : " https://github.com/jpogran/puppet-vscode/issues"
21
- },
22
- "engines" : {
23
- "vscode" : " ^1.10.0"
24
- },
25
- "categories" : [
26
- " Linters" ,
27
- " Languages" ,
28
- " Snippets"
29
- ],
30
- "activationEvents" : [
31
- " onLanguage:puppet" ,
32
- " onCommand:extension.puppetLint" ,
33
- " onCommand:extension.puppetParserValidate" ,
34
- " onCommand:extension.puppetShowNodeGraphToSide" ,
35
- " onCommand:extension.puppetResource"
36
- ],
37
- "main" : " ./out/src/extension" ,
38
- "contributes" : {
39
- "languages" : [
40
- {
41
- "id" : " puppet" ,
42
- "aliases" : [
43
- " Puppet" ,
44
- " puppet"
45
- ],
46
- "extensions" : [
47
- " .pp" ,
48
- " .epp"
49
- ],
50
- "configuration" : " ./languages/puppet.configuration.json"
51
- }
52
- ],
53
- "grammars" : [
54
- {
55
- "language" : " puppet" ,
56
- "scopeName" : " source.puppet" ,
57
- "path" : " ./syntaxes/puppet.tmLanguage"
58
- }
59
- ],
60
- "snippets" : [
61
- {
62
- "language" : " puppet" ,
63
- "path" : " ./snippets/keywords.snippets.json"
64
- }
2
+ "name" : " puppet-vscode" ,
3
+ "displayName" : " Puppet" ,
4
+ "description" : " Puppet VSCode extension" ,
5
+ "version" : " 0.4.2" ,
6
+ "publisher" : " jpogran" ,
7
+ "license" : " SEE LICENSE IN LICENSE.txt" ,
8
+ "icon" : " images/Puppet-Logo-Amber-sm.png" ,
9
+ "galleryBanner" : {
10
+ "color" : " #000000" ,
11
+ "theme" : " dark"
12
+ },
13
+ "homepage" : " https://github.com/jpogran/puppet-vscode" ,
14
+ "repository" : {
15
+ "type" : " git" ,
16
+ "url" : " https://github.com/jpogran/puppet-vscode"
17
+ },
18
+ "bugs" : {
19
+ "type" : " git" ,
20
+ "url" : " https://github.com/jpogran/puppet-vscode/issues"
21
+ },
22
+ "engines" : {
23
+ "vscode" : " ^1.10.0"
24
+ },
25
+ "categories" : [
26
+ " Linters" ,
27
+ " Languages" ,
28
+ " Snippets"
65
29
],
66
- "commands" : [
67
- {
68
- "command" : " extension.puppetResource" ,
69
- "category" : " Puppet" ,
70
- "title" : " Resource" ,
71
- "when" : " editorTextFocus && editorLangId == 'puppet'"
72
- },
73
- {
74
- "command" : " extension.puppetShowNodeGraphToSide" ,
75
- "title" : " Open Node Graph to the Side" ,
76
- "category" : " Puppet" ,
77
- "icon" : {
78
- "light" : " ./media/PreviewOnRightPane_16x.svg" ,
79
- "dark" : " ./media/PreviewOnRightPane_16x_dark.svg"
80
- }
81
- }
30
+ "activationEvents" : [
31
+ " onLanguage:puppet" ,
32
+ " onCommand:extension.puppetLint" ,
33
+ " onCommand:extension.puppetParserValidate" ,
34
+ " onCommand:extension.puppetShowNodeGraphToSide" ,
35
+ " onCommand:extension.puppetResource"
82
36
],
83
- "configurationDefaults" : {
84
- "files.encoding" : " utf8" ,
85
- "files.associations" : [
86
- " .pp" ,
87
- " .epp"
88
- ],
89
- "[puppet]" : {
90
- "editor.tabSize" : 2 ,
91
- "editor.insertSpaces" : true ,
92
- "files.insertFinalNewline" : true
93
- }
94
- },
95
- "configuration" : {
96
- "type" : " object" ,
97
- "title" : " puppet" ,
98
- "properties" : {
99
- "puppet.languageserver.address" : {
100
- "type" : " string" ,
101
- "default" : " 127.0.0.1" ,
102
- "description" : " The IP address or hostname of the Puppet Language Server to connect to"
103
- },
104
- "puppet.languageserver.port" : {
105
- "type" : " integer" ,
106
- "default" : 8081 ,
107
- "description" : " The TCP Port of the Puppet Language Server to connect to"
108
- },
109
- "puppet.languageserver.timeout" : {
110
- "type" : " integer" ,
111
- "default" : 10 ,
112
- "description" : " The timeout to connect to the local Puppet Language Server"
113
- },
114
- "puppet.languageserver.preLoadPuppet" : {
115
- "type" : " boolean" ,
116
- "default" : true ,
117
- "description" : " Initalize Puppet and Facter when local Puppet Language Server starts"
118
- },
119
- "puppet.languageserver.debugFilePath" : {
120
- "type" : " string" ,
121
- "default" : " " ,
122
- "description" : " Set the local Puppet Language Server to send debug information to a file"
37
+ "main" : " ./out/src/extension" ,
38
+ "contributes" : {
39
+ "languages" : [
40
+ {
41
+ "id" : " puppet" ,
42
+ "aliases" : [
43
+ " Puppet" ,
44
+ " puppet"
45
+ ],
46
+ "extensions" : [
47
+ " .pp" ,
48
+ " .epp"
49
+ ],
50
+ "configuration" : " ./languages/puppet.configuration.json"
51
+ }
52
+ ],
53
+ "grammars" : [
54
+ {
55
+ "language" : " puppet" ,
56
+ "scopeName" : " source.puppet" ,
57
+ "path" : " ./syntaxes/puppet.tmLanguage"
58
+ }
59
+ ],
60
+ "snippets" : [
61
+ {
62
+ "language" : " puppet" ,
63
+ "path" : " ./snippets/keywords.snippets.json"
64
+ }
65
+ ],
66
+ "commands" : [
67
+ {
68
+ "command" : " extension.puppetResource" ,
69
+ "category" : " Puppet" ,
70
+ "title" : " Resource" ,
71
+ "when" : " editorTextFocus && editorLangId == 'puppet'"
72
+ },
73
+ {
74
+ "command" : " extension.puppetShowNodeGraphToSide" ,
75
+ "title" : " Open Node Graph to the Side" ,
76
+ "category" : " Puppet" ,
77
+ "icon" : {
78
+ "light" : " ./media/PreviewOnRightPane_16x.svg" ,
79
+ "dark" : " ./media/PreviewOnRightPane_16x_dark.svg"
80
+ }
81
+ }
82
+ ],
83
+ "configurationDefaults" : {
84
+ "files.encoding" : " utf8" ,
85
+ "files.associations" : [
86
+ " .pp" ,
87
+ " .epp"
88
+ ],
89
+ "[puppet]" : {
90
+ "editor.tabSize" : 2 ,
91
+ "editor.insertSpaces" : true ,
92
+ "files.insertFinalNewline" : true
93
+ }
123
94
},
124
- "puppet.languageclient.minimumUserLogLevel" : {
125
- "type" : " string" ,
126
- "default" : " normal" ,
127
- "description" : " Set the minimum log level that the user will see on the Puppet OutputChannel (Allowed values: verbose, debug, normal, warning, error)"
95
+ "configuration" : {
96
+ "type" : " object" ,
97
+ "title" : " puppet" ,
98
+ "properties" : {
99
+ "puppet.languageserver.address" : {
100
+ "type" : " string" ,
101
+ "default" : " 127.0.0.1" ,
102
+ "description" : " The IP address or hostname of the Puppet Language Server to connect to"
103
+ },
104
+ "puppet.languageserver.port" : {
105
+ "type" : " integer" ,
106
+ "default" : 8081 ,
107
+ "description" : " The TCP Port of the Puppet Language Server to connect to"
108
+ },
109
+ "puppet.languageserver.timeout" : {
110
+ "type" : " integer" ,
111
+ "default" : 10 ,
112
+ "description" : " The timeout to connect to the local Puppet Language Server"
113
+ },
114
+ "puppet.languageserver.preLoadPuppet" : {
115
+ "type" : " boolean" ,
116
+ "default" : true ,
117
+ "description" : " Initalize Puppet and Facter when local Puppet Language Server starts"
118
+ },
119
+ "puppet.languageserver.debugFilePath" : {
120
+ "type" : " string" ,
121
+ "default" : " " ,
122
+ "description" : " Set the local Puppet Language Server to send debug information to a file"
123
+ },
124
+ "puppet.languageclient.minimumUserLogLevel" : {
125
+ "type" : " string" ,
126
+ "default" : " normal" ,
127
+ "description" : " Set the minimum log level that the user will see on the Puppet OutputChannel (Allowed values: verbose, debug, normal, warning, error)"
128
+ }
129
+ }
128
130
}
129
- }
131
+ },
132
+ "scripts" : {
133
+ "vscode:prepublish" : " tsc -p ./" ,
134
+ "compile" : " tsc -p ./" ,
135
+ "compile-watch" : " tsc -watch -p ./" ,
136
+ "postinstall" : " node ./node_modules/vscode/bin/install" ,
137
+ "test" : " node ./node_modules/vscode/bin/test"
138
+ },
139
+ "devDependencies" : {
140
+ "typescript" : " ^2.0.3" ,
141
+ "vscode" : " ^1.0.0" ,
142
+ "vsce" : " ^1.18.0" ,
143
+ "gulp" : " ^3.9.1" ,
144
+ "gulp-bump" : " ^2.7.0" ,
145
+ "yargs" : " ^8.0.1" ,
146
+ "del" : " ^2.2.2" ,
147
+ "run-sequence" : " ^1.2.2" ,
148
+ "@types/node" : " ^6.0.40" ,
149
+ "@types/mocha" : " ^2.2.32"
150
+ },
151
+ "dependencies" : {
152
+ "vscode-languageclient" : " ^3.1.0"
130
153
}
131
- },
132
- "scripts" : {
133
- "vscode:prepublish" : " tsc -p ./" ,
134
- "compile" : " tsc -p ./" ,
135
- "compile-watch" : " tsc -watch -p ./" ,
136
- "postinstall" : " node ./node_modules/vscode/bin/install" ,
137
- "test" : " node ./node_modules/vscode/bin/test"
138
- },
139
- "devDependencies" : {
140
- "typescript" : " ^2.0.3" ,
141
- "vscode" : " ^1.0.0" ,
142
- "vsce" : " ^1.18.0" ,
143
- "gulp" : " ^3.9.1" ,
144
- "gulp-bump" : " ^2.7.0" ,
145
- "yargs" : " ^8.0.1" ,
146
- "del" : " ^2.2.2" ,
147
- "run-sequence" : " ^1.2.2" ,
148
- "@types/node" : " ^6.0.40" ,
149
- "@types/mocha" : " ^2.2.32"
150
- },
151
- "dependencies" : {
152
- "vscode-languageclient" : " ^3.1.0"
153
- }
154
154
}
0 commit comments