-
Notifications
You must be signed in to change notification settings - Fork 5
/
Manifest.json
79 lines (79 loc) · 2.18 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
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
{
"$schema": "https://qooxdoo.org/schema/Manifest-2-0-0.json",
"info": {
"name": "Qooxdoo API Viewer",
"summary": "A viewer application to browse generated API documentation of qooxdoo classes",
"description": "The Api Viewer lets you browse API documentation generated from Javascript source comments. It supports many specifics of qooxdoo classes like inheritance, properties and private members.",
"keywords": [
"API",
"class browser"
],
"homepage": "https://github.com/qooxdoo/apiviewer",
"license": "MIT",
"authors": [
{
"name": "John Spackman (johnspackman)",
"email": "[email protected]"
},
{
"name": "Daniel Wagner (dwagner)",
"email": "daniel DOT wagner AT 1und1 DOT de"
},
{
"name": "Adrian Olaru (adrianolaru)",
"email": "Adrian DOT Olaru AT 1and1 DOT ro"
},
{
"name": "Henner Kollmann (hkollmann)",
"email": "Henner DOT Kollmann AT gmx DOT de"
}
],
"version": "2.0.1",
"sourceViewUri": "https://github.com/qooxdoo/apiviewer/blob/%{qxGitBranch}/source/class/%{classFilePath}#L%{lineNumber}"
},
"provides": {
"namespace": "qxl.apiviewer",
"encoding": "utf-8",
"class": "source/class",
"resource": "source/resource",
"translation": "source/translation",
"application": {
"class": "qxl.apiviewer.Application",
"theme": "qxl.apiviewer.Theme",
"name": "apiviewer",
"title": "Qooxdoo API Viewer",
"environment": {
"qx.icontheme": "Tango",
"qxl.apiviewer.applicationName": "",
"qxl.apiviewer.exclude": [
"qxl.apiviewer.*"
],
"qxl.apiviewer.include": []
},
"include": [
"qx.*"
],
"exclude": [
"qx.module.Blocker",
"qx.module.Placement"
],
"parts": {
"boot": {
"include": [
"qx.*"
]
},
"tool": {
"include": [
"qx.tool.*"
]
}
}
}
},
"requires": {
"@qooxdoo/framework": "^7.0.0",
"qooxdoo/qxl.versionlabel": "^2.0.0",
"qooxdoo/deprecated.qx.io.remote": "^1.0.2"
}
}