forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 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
{
"name": "perl",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": { "vscode": "*" },
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js textmate/perl.tmbundle Syntaxes/Perl.plist ./syntaxes/perl.tmLanguage.json Syntaxes/Perl%206.tmLanguage ./syntaxes/perl6.tmLanguage.json"
},
"contributes": {
"languages": [{
"id": "perl",
"aliases": ["Perl", "perl"],
"extensions": [".pl", ".pm", ".pod", ".t", ".PL", ".psgi"],
"firstLine": "^#!.*\\bperl\\b",
"configuration": "./perl.language-configuration.json"
}, {
"id": "perl6",
"aliases": ["Perl 6", "perl6"],
"extensions": [".p6", ".pl6", ".pm6", ".nqp"],
"firstLine": "(^#!.*\\bperl6\\b)|use\\s+v6",
"configuration": "./perl6.language-configuration.json"
}],
"grammars": [{
"language": "perl",
"scopeName": "source.perl",
"path": "./syntaxes/perl.tmLanguage.json"
}, {
"language": "perl6",
"scopeName": "source.perl.6",
"path": "./syntaxes/perl6.tmLanguage.json"
}]
}
}