-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "grc-syntax-highlighting",
"displayName": "grc-syntax-highlighting",
"description": "Syntax support for the grc Generic Colouriser",
"version": "0.0.2",
"author": {
"name": "Oren Trutner",
"url": "https://github.com/orentrutner"
},
"publisher": "oren-trutner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orentrutner/grc-syntax-highlighting"
},
"bugs": {
"url": "https://github.com/orentrutner/grc-syntax-highlighting/issues"
},
"engines": {
"vscode": "^1.35.0"
},
"activationEvents": [
"onLanguage:grc-app"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "grc-app",
"aliases": [
"grc app configuration",
"grc"
],
"filenamePatterns": [
"conf.*"
],
"configuration": "./grc-app.language-configuration.json"
}
],
"grammars": [
{
"language": "grc-app",
"scopeName": "source.grc.app",
"path": "./syntaxes/grc-app.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/node": "^12.0.10",
"@types/vscode": "^1.35.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"main": "./out/extension.js"
}