-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "vscode-brewfile",
"displayName": "Brewfile",
"description": "Syntax Highlighting for Brewfile",
"version": "1.0.0",
"publisher": "sharat",
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:Brewfile"
],
"main": "./extension",
"contributes": {
"languages": [
{
"id": "ruby",
"aliases": [
"Ruby",
"ruby"
],
"filenamePatterns": [
"Brewfile"
]
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"mocha": "^2.3.3",
"typescript": "^3.8.3",
"vscode": "^1.1.36",
"@types/node": "^13.9.1",
"eslint": "^6.8.0"
}
}