forked from oldjuanito/VSCodeExtension-PostgreSQL
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
98 lines (97 loc) · 2.8 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
{
"name": "pgsql",
"description": "run sql in your postgres instance",
"license": "MIT",
"version": "0.1.3",
"publisher": "doublefint",
"engines": {
"vscode": "^1.19.0"
},
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/doublefint/vscode-pgsql.git"
},
"categories": [
"Other",
"Languages"
],
"activationEvents": [
"onLanguage:pgsql"
],
"main": "./extension",
"contributes": {
"commands": [
{
"category": "pgsql",
"command": "pgsql.run",
"title": "run in postgres"
}
],
"keybindings": [
{
"command": "pgsql.run",
"key": "ctrl+f5",
"mac": "cmd+f5",
"when": "editorTextFocus && editorLangId == pgsql"
}
],
"languages": [
{
"id": "pgsql",
"extensions": [
".sql",
".ddl",
".dml",
".pgsql"
],
"aliases": [
"pgsql"
],
"configuration": "./extension/config.json"
}
],
"grammars": [
{
"language": "pgsql",
"scopeName": "source.plpgsql.postgres",
"path": "./extension/grammars.tmLanguage"
}
],
"configuration": {
"title": "pgsql configuration",
"type": "object",
"properties": {
"pgsql.connection": {
"type": "string",
"default": "postgres://username:pasword@localhost:5432/dbname",
"description": "connection string to your postgres db"
},
"pgsql.completion.enabled": {
"type": "boolean",
"default": true,
"description": "enable or disable code completion"
},
"pgsql.signatureHelp.enabled": {
"type": "boolean",
"default": true,
"description": "enable or disable code completion"
}
}
},
"snippets": [ { "language": "pgsql", "path": "./extension/snippets.json" } ]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^4.6.1",
"jshint": "^2.9.5",
"jslint": "^0.11.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
}
}