-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 800 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 800 Bytes
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
{
"name": "data-atom",
"main": "./lib/data-atom",
"version": "0.29.1",
"description": "Query and manage data sources (databases) from within Atom",
"activationCommands": [],
"repository": "https://github.com/lukemurray/data-atom",
"license": "MIT",
"engines": {
"atom": ">=1.17.0 <2.0.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"dependencies": {
"dom-listener": "0.1.2",
"etch": "0.12.7",
"mssql": "3.3.0",
"mysql": "2.14.1",
"pg": "git+https://github.com/lukemurray/node-postgres#master",
"season": "5.4.1",
"underscore.string": "2.4.0"
}
}