forked from fabianfiorotto/quick-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.2 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
{
"name": "quick-query",
"main": "./lib/quick-query",
"version": "0.15.0",
"description": "Run sql queries",
"keywords": [
"sql",
"query",
"database",
"mysql",
"postgres"
],
"activationCommands": {
"atom-workspace": [
"quick-query:run",
"quick-query:new-editor",
"quick-query:toggle-browser",
"quick-query:new-connection"
]
},
"providedServices": {
"quick-query-protocols": {
"description": "Add new protocols to quick-query",
"versions": {
"0.6.0": "provideConnectView"
}
},
"quick-query-browser": {
"description": "Access to connections",
"versions": {
"0.7.0": "provideBrowserView"
}
},
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"repository": "https://github.com/fabianfiorotto/quick-query",
"license": "MIT",
"engines": {
"atom": ">=1.27.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.3",
"mysql": "^2.10.2 ",
"pg": "^4.3.0",
"json2csv": "3.2.0"
}
}