-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (84 loc) · 2.27 KB
/
package.json
File metadata and controls
85 lines (84 loc) · 2.27 KB
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
77
78
79
80
81
82
83
84
85
{
"name": "TeaBo look ahead online",
"version": "0.3.rc1",
"author": "Beuth Hochschule für Technik",
"description": "TeaBo (Acronym for team board) is an online collaboration platform for collecting ideas and brainstorming. This is a project of students of the Beuth Hochschule für Technik Berlin, University of Applied Sciences and still under development.",
"engines": {"node": ">= 0.6.15"},
"help": {
"web": "https://github.com/Qyotta/TeaBo/blob/master/README.md"
},
"contributors": [
{
"name": "Christian Bromann",
"email": "contact@christian-bromann.com"
},
{
"name": "Benjamin Kuhn",
"email": "b.kuhn@hotmail.de"
},
{
"name": "Andreas Sattler",
"email": "info@royal-scripts.de"
},
{
"name": "Christoph Nützel",
"email": "christoph_nuetzel@web.de"
},
{
"name": "Marcus Fabarius",
"email": "marcus.froede@gmx.de"
},
{
"name": "Marcus Rabe",
"email": "marcus_berlin@gmx.net"
},
{
"name": "Martin Schmidt",
"email": "swp@schmidthappens.de"
},
{
"name": "Siamak Haschemi",
"email": "siamak@haschemi.org"
}
],
"server": {
"express": {
"host": "http://localhost",
"port": 3000
},
"faye": {
"host": "http://localhost",
"port": 3001
},
"mongo": {
"host": "mongodb://localhost/teabo"
}
},
"scripts": {
"start": "node app",
"install": "sh install.sh",
"test": "node ./test/test.something <browser>"
},
"dependencies": {
"express": "3.0.x",
"faye": "0.8.2",
"nodemailer": "0.3.x",
"mongodb": "1.0.2",
"mongoose": "3.0.x",
"mime": "1.2.6",
"bcrypt": "0.7.0"
},
"devDependencies": {
"webdriverjs": "x"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/Qyotta/TeaBo.git"
},
"licenses": [
{
"type": "EPLv1",
"url": "http://www.eclipse.org/legal/epl-v10.html"
}
]
}