-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
118 lines (118 loc) · 2.65 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
{
"name": "vscode-fish",
"displayName": "Fish",
"description": "Fish syntax highlighting and formatting",
"publisher": "bmalehorn",
"license": "MIT",
"repository": {
"url": "https://github.com/bmalehorn/vscode-fish"
},
"version": "1.0.38",
"engines": {
"vscode": "^1.47.0"
},
"icon": "fish.png",
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "Syntax highlighting supported"
}
},
"categories": [
"Programming Languages",
"Formatters",
"Linters"
],
"keywords": [
"fish",
"shell",
"fish_indent",
"IDE",
"multi-root ready"
],
"main": "./out/extension",
"activationEvents": [
"onLanguage:fish"
],
"contributes": {
"languages": [
{
"id": "fish",
"aliases": [
"Fish"
],
"extensions": [
".fish"
],
"firstLine": "^#!\\s*/.*\\bfish\\b",
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fish",
"scopeName": "source.fish",
"path": "./syntaxes/fish.tmLanguage.json"
},
{
"scopeName": "markdown.fish.codeblock",
"path": "./syntaxes/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.fish": "fish"
}
}
],
"configuration": {
"title": "Fish",
"properties": {
"fish.path.fish": {
"type": "string",
"scope": "machine-overridable",
"default": "fish",
"description": "Path to the `fish` command"
},
"fish.path.fish_indent": {
"type": "string",
"scope": "machine-overridable",
"default": "fish_indent",
"description": "Path to the `fish_indent` command"
}
}
},
"snippets": [
{
"language": "fish",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "yarn run compile && node ./out/test/runTests"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/vscode": "^1.47.0",
"@vscode/test-electron": "^2.1.3",
"glob": "^7.2.0",
"husky": "^3.0.4",
"mocha": "^9.2.2",
"prettier": "^2.0.0",
"pretty-quick": "^1.11.1",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}