forked from bruin-data/bruin-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "bruin",
"displayName": "Bruin",
"description": "Manage your Bruin data assets from within VS Code.",
"version": "0.0.1",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Data Science", "Formatters"
],
"icon": "images/bruin-logo-sm128.png",
"activationEvents": [],
"main": "./extension.js",
"repository": {
"type": "git",
"url": "https://github.com/bruin-data/bruin-vscode"
},
"publisher": "bruin",
"contributes": {
"grammars": [
{
"path": "./syntaxes/bruin.json",
"scopeName": "sql.comment.block",
"injectTo": [
"source.sql"
]
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.83.0",
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.2.2",
"@vscode/test-electron": "^2.3.4"
}
}