forked from Floobits/atom-term3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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": "term3",
"main": "./index",
"version": "0.22.1",
"description": "A terminal emulator for Atom. You can run shell sessions, Vim, Emacs, htop, etc.",
"repository": "https://github.com/Floobits/atom-term3",
"license": "MIT",
"engines": {
"atom": ">=0.121.0"
},
"dependencies": {
"atom-term.js": "https://github.com/Floobits/atom-term.js/archive/4bd056eca0d03e5420472df91923e3e4bb0aaeed.tar.gz",
"atom-space-pen-views": "^2.0.3",
"debounce": "1.0.x",
"fs-plus": "^2.2.3",
"keypather": "^1.3.2",
"flukes": "0.1.x",
"ptyw.js": "0.4.x",
"event-kit": "1.5.x",
"react-atom-fork": "0.11.x",
"react-tools": "0.11.x",
"reactionary-atom-fork": "1.x"
},
"devDependencies": {
"eslint": "2.x",
"eslint-config-floobits": "*",
"eslint-plugin-react": "4.x"
},
"scripts": {
"build": "npm run install",
"lint": "eslint lib templates",
"watch": "jsx --watch --harmony templates lib/build",
"install": "jsx --harmony templates lib/build"
},
"providedServices": {
"term3-service": {
"description": "Provides a service object with the methods: newTerm, onTerm, and getTerminals.",
"versions": {
"0.1.3": "service_0_1_3"
}
}
}
}