-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
{
"name": "floobits",
"main": "./lib/floobits",
"version": "0.32.12",
"description": "The Floobits pair programming plugin for Atom. This plugin adds support for real-time collaborative editing, video chatting, and sharing terminals via the Term3 plugin. A Floobits account is required, but the plugin will guide you.",
"maintainers": [
{
"name": "Geoff Greer",
"web": "http://geoff.greer.fm/"
},
{
"name": "Matt Kaniaris",
"web": "https://github.com/kans"
}
],
"contributors": [
{
"name": "Geoff Greer",
"web": "http://geoff.greer.fm/"
},
{
"name": "Matt Kaniaris",
"web": "https://github.com/kans"
},
{
"name": "Bjorn Tipling",
"web": "https://github.com/btipling"
}
],
"repository": "https://github.com/Floobits/floobits-atom",
"license": "Apache-2.0",
"engines": {
"atom": ">=1.0"
},
"dependencies": {
"async": "1.x",
"atom-space-pen-views": "2.2.x",
"dmp": "1.x",
"flukes": ">=0.1.4",
"fs-plus": "2.x",
"lodash": "4.x",
"minimatch": "3.x",
"mkdirp": "0.5.x",
"open": "0.x",
"react-atom-fork": "0.11.x",
"react-tools": "0.11.x",
"reactionary-atom-fork": "1.x",
"request": "2.x",
"event-kit": "1.5.x",
"chokidar": "1.x"
},
"consumedServices": {
"term3-service": {
"versions": {
"0.1.3": "term3-service"
}
}
},
"devDependencies": {
"eslint": "3.x",
"eslint-config-floobits": "*",
"eslint-plugin-react": "5.x"
},
"scripts": {
"build": "npm run install",
"lint": "eslint lib templates",
"watch": "jsx --watch --harmony templates lib/build",
"install": "jsx --harmony templates lib/build"
}
}