forked from platformio/platformio-atom-ide-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "platformio-ide-terminal",
"main": "./lib/platformio-ide-terminal",
"version": "2.7.0",
"description": "A terminal package for Atom, complete with themes, API and more for PlatformIO IDE. Fork of terminal-plus.",
"author": "Jeremy Ebneyamin",
"keywords": [
"PlatformIO",
"terminal-plus",
"terminal",
"iterm",
"panel",
"pty",
"tty",
"xterm",
"iterm",
"iterm2",
"console",
"powershell"
],
"contributors": [
{
"name": "Ivan Kravets",
"email": "[email protected]",
"url": "http://platformio.org"
},
{
"name": "Dmytro Kyrychuk",
"email": "[email protected]",
"url": "http://platformio.org"
}
],
"homepage": "https://atom.io/packages/platformio-ide-terminal",
"repository": "https://github.com/platformio/platformio-atom-ide-terminal",
"license": "MIT",
"engines": {
"atom": ">=1.12.2 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0",
"pty.js": "https://github.com/platformio/pty.js/tarball/prebuilt",
"term.js": "https://github.com/jeremyramin/term.js/tarball/master",
"underscore": "^1.8.3"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"platformioIDETerminal": {
"description": "PlatformIO IDE Terminal API",
"versions": {
"1.1.0": "providePlatformIOIDETerminal"
}
},
"runInTerminal": {
"description": "Deprecated API for PlatformIO IDE 1.0",
"versions": {
"0.14.5": "provideRunInTerminal"
}
}
}
}