-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 1.83 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
{
"name": "termination",
"main": "./lib/termination",
"version": "0.7.7",
"description": "A terminal package for Atom, complete with themes, API and more. Fork of platformio-ide-terminal.",
"author": "Jeremy Ebneyamin",
"keywords": [
"termination",
"PlatformIO",
"terminal-plus",
"terminal",
"term",
"plus",
"panel",
"tty",
"xterm"
],
"contributors": [
{
"name": "Ivan Kravets",
"email": "me@ikravets.com",
"url": "http://platformio.org"
},
{
"name": "Dmytro Kyrychuk",
"email": "dmytro.kyrychuck@gmail.com",
"url": "http://platformio.org"
},
{
"name": "Fred Barclay",
"email": "BugsAteFred@gmail.com",
"url": "https://github.com/Fred-Barclay"
},
{
"name": "Our *awesome* community!",
"url": "https://github.com/bus-stop/Termination/blob/master/AUTHORS"
}
],
"homepage": "https://atom.io/packages/termination",
"repository": "https://github.com/bus-stop/Termination",
"bugs": "https://github.com/bus-stop/Termination/issues",
"license": "MIT",
"engines": {
"atom": ">=1.41.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"node-pty-prebuilt-multiarch": "^0.9.0",
"term.js": "https://github.com/bus-stop/term.js/tarball/master",
"underscore": "^1.8.3"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"TerminationTerminal": {
"description": "Termination API",
"versions": {
"1.1.0": "provideTerminationTerminal"
}
},
"runInTerminal": {
"description": "Allow to run commands in terminal.",
"versions": {
"0.14.5": "provideRunInTerminal"
}
}
}
}