-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.75 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
{
"name": "touist",
"displayName": "touist",
"description": "Syntax support for the Touist language for logic",
"version": "0.1.2",
"publisher": "maelvalais",
"repository": "https://github.com/touist/touist-vscode",
"icon": "images/touist-logo.png",
"license": "MIT",
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Languages",
"Linters"
],
"activationEvents": [
"onLanguage:touist"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "Touist configuration",
"properties": {
"touist.touistPath": {
"type": "string",
"default": "touist",
"description": "Path to touist."
},
"touist.lintOnChange": {
"type": "boolean",
"default": true,
"description": "Do lint when made changes."
},
"touist.lintOnSave": {
"type": "boolean",
"default": true,
"description": "Do lint when save document."
},
"touist.lintDelay": {
"type": "number",
"default": 500,
"description": "Time to delay lint when made changes."
},
"touist.enableLint": {
"type": "boolean",
"default": true,
"description": "Enable the linter using touist --linter."
}
}
},
"commands": [
{
"command": "touist.changeLanguage",
"title": "Touist: change language"
}
],
"languages": [
{
"id": "touist",
"aliases": [
"touist",
"touist"
],
"extensions": [
".touist",
".touistl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "touist",
"scopeName": "source.touist",
"path": "./syntaxes/touist.tmLanguage"
}
],
"problemMatchers": [
{
"name": "touist",
"owner": "touist",
"fileLocation": "relative",
"pattern": [
{
"regexp": "^([^:]+): line (\\d+), col (\\d+)-(\\d+): (error|warning): (.*)$",
"file": 1,
"line": 2,
"column": 3,
"endColumn": 4,
"severity": 5,
"message": 6
}
]
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "node build.js -w"
},
"devDependencies": {
"@types/node": "^6.0.40",
"glob-watcher": "latest",
"js-yaml": "latest",
"plist": "latest",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"compare-versions": "latest",
"get-stream": "^4.1.0"
}
}