-
Notifications
You must be signed in to change notification settings - Fork 1
/
Manifest.json
47 lines (47 loc) · 1.23 KB
/
Manifest.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
{
"$schema": "https://qooxdoo.org/schema/Manifest-2-0-0.json",
"info": {
"name": "Playground",
"summary": "A playground for application coding",
"description": "This application features a code editor and a live preview of the application.",
"keywords": [],
"homepage": "http://demo.qooxdoo.org/current/playground",
"license": "MIT",
"authors": [
{
"name": "Martin Wittemann (martinwittemann)",
"email": "martin DOT wittemann AT 1und1 DOT de"
},
{
"name": "Henner Kollmann (hkollmann)",
"email": "Henner DOT Kollmann AT gmx DOT de"
}
],
"version": "2.0.0"
},
"provides": {
"namespace": "qxl.playground",
"encoding": "utf-8",
"class": "source/class",
"resource": "source/resource",
"translation": "source/translation",
"application": {
"class": "qxl.playground.Application",
"theme": "qxl.playground.theme.Theme",
"name": "playground",
"title": "Playground",
"bootPath": "source/boot",
"include": [
"qx.*"
],
"exclude": [
"qx.test.*",
"qx.module.Blocker",
"qx.module.Placement"
]
}
},
"requires": {
"@qooxdoo/framework": "^7.0.0"
}
}