-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "tokamak-terminal",
"main": "./lib/tokamak-terminal",
"version": "10.0.1",
"description": "A terminal package for Atom, complete with themes, API and more for Tokamak IDE. Fork of terminal-plus.",
"author": "Mahmut Bulut <vertexclique@gmail.com>",
"keywords": [
"tokamak",
"terminal-plus",
"terminal",
"tokamak-terminal",
"plus",
"panel",
"tty"
],
"homepage": "https://atom.io/packages/tokamak-terminal",
"repository": "https://github.com/vertexclique/tokamak-terminal",
"license": "MIT",
"engines": {
"atom": ">=1.2.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"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"providedServices": {
"runInTerminal": {
"description": "Allow to run commands in terminal.",
"versions": {
"0.14.5": "provideRunInTerminal"
}
}
}
}