-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
30 lines (30 loc) · 825 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
{
"name": "jq-syntax-highlighting",
"displayName": "jq Syntax Highlighting",
"description": "Syntax support for the jq JSON command-line processor.",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/orentrutner/jq-syntax-highlighting.git"
},
"publisher": "jq-syntax-highlighting",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "jq",
"aliases": ["jq", "jq"],
"extensions": [".jq"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "jq",
"scopeName": "source.jq",
"path": "./syntaxes/jq.tmLanguage.json"
}]
}
}