-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
131 lines (131 loc) · 3.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "tal",
"displayName": "Tandem TAL",
"description": "Syntax highlighting for Transaction Application Language",
"version": "0.7.11",
"keywords": [
"tal",
"tandem",
"languages",
"tmLanguage",
"TextMate",
"TAL-tmLanguage"
],
"publisher": "KNovichikhin",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"license": "./LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/knovichikhin/vscode_tal.git"
},
"bugs": {
"url": "https://github.com/knovichikhin/vscode_tal/issues",
"email": "konstantin.novichikhin@gmail.com"
},
"contributes": {
"languages": [
{
"id": "tal",
"aliases": [
"TAL",
"tal"
],
"extensions": [
".tal"
],
"configuration": "./language_configuration/tal.json"
},
{
"id": "tacl",
"aliases": [
"TACL",
"tacl"
],
"extensions": [
".tacl"
],
"configuration": "./language_configuration/tacl.json"
}
],
"grammars": [
{
"language": "tal",
"scopeName": "source.tal",
"path": "./syntaxes/tal.tmLanguage.json"
},
{
"language": "tacl",
"scopeName": "source.tacl",
"path": "./syntaxes/tacl.tmLanguage.json"
}
],
"snippets": [
{
"language": "tal",
"path": "./snippets/tal.json"
},
{
"language": "tacl",
"path": "./snippets/tacl.json"
}
],
"configuration": {
"title": "TAL",
"properties": {
"tal.enableTalFunctionCompletion": {
"type": "boolean",
"default": false,
"description": "Complete standard TAL functions with their parameter signature."
},
"tal.enableDocumentSymbol": {
"type": "boolean",
"default": true,
"description": "Scan active file for procs and subprocs to be used by go-to-symbol, outline and breadcrumbs."
}
}
},
"configurationDefaults": {
"[tal]": {
"editor.wordSeparators": "`~!@#%&*()-=+[{]}\\|;:'\",.<>/?"
},
"[tacl]": {
"editor.wordSeparators": "`~!@%&*()-=+[{]}\\|;:'\",.<>/?"
}
}
},
"activationEvents": [
"onLanguage:tal",
"onLanguage:tacl"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"prettier-watch": "onchange \"**/*\" -- prettier --write --ignore-unknown {{changed}}",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^9.1.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.42.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"@vscode/test-electron": "^1.4.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.12.0",
"glob": "^7.1.6",
"mocha": "^9.2.2",
"prettier": "2.1.2",
"typescript": "^3.9.4"
}
}