-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 840 Bytes
/
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
{
"name": "perl-completions",
"displayName": "Perl Completions",
"description": "Perl code completion snippets",
"publisher": "jorol",
"license": "SEE LICENSE IN LICENSE",
"icon": "icon.png",
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"Perl",
"Perl5",
"Snippets",
"Code Completion"
],
"version": "0.0.2",
"engines": {
"vscode": "^1.58.0"
},
"contributes": {
"snippets": [
{
"language": "perl",
"path": "./snippets/snippets.code-snippets"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/jorol/perl-completions.git"
},
"homepage": "https://github.com/jorol/perl-completions#readme"
}