-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
37
38
39
40
41
42
{
"name": "diff",
"displayName": "diff",
"description": "Syntax highlighting for diff files.",
"version": "0.0.1",
"publisher": "rafaelmaiolla",
"license": "MIT",
"author": "Rafael Maiolla <rafaelmaiolla@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/rafaelmaiolla/diff-vscode"
},
"bugs": {
"url": "https://github.com/rafaelmaiolla/diff-vscode/issues"
},
"engines": {
"vscode": "^0.10.10"
},
"keywords": [
"diff",
"patch",
"rej",
"Visual Studio Code",
"VSCode"
],
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "diff",
"aliases": ["Diff", "diff"],
"extensions": [".patch",".diff",".rej"],
"configuration": "./diff.configuration.json"
}],
"grammars": [{
"language": "diff",
"scopeName": "source.diff",
"path": "./syntaxes/diff.tmLanguage"
}]
}
}