This repository has been archived by the owner on Jun 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
121 lines (121 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tedxregionallens",
"fullName": "TEDx Regional Lens",
"version": "2.0.0",
"description": "Tedx Regional Lens is a web app displaying all the TEDx conferences in a country.",
"keywords": [
"tedx",
"conferences",
"regional",
"lens"
],
"joshfire": {
"images": {
"small": "marketing/image-small.png",
"big": "marketing/image-big.png"
},
"devices": [
{
"devices": "*",
"startfile": "app/index.html",
"images": "marketing/image-small.png",
"screenshots": [
"marketing/image-small.png"
]
}
],
"datasources": {
"tweets": {
"title": "Comments",
"description": "Comments on social networks, e.g. tweets from an hashtag",
"inputType": [
"Thing"
]
},
"youtube": {
"title": "Playlists youtube",
"description": "Playlist of events and talks presented by TEDx",
"inputType": [
"VideoObject"
]
},
"tedxevents": {
"title": "Spreadsheets TEDx Events",
"description": "Datasource that returns the TEDx Events",
"inputType": [
"Article"
]
},
"blacklist": {
"title": "Spreadsheets TEDx blacklisted tweets",
"description": "Datasource that returns the blacklisted tweets and the TEDx Events",
"inputType": [
"Article"
]
},
"about": {
"title": "About Page Content",
"description": "Datasource that returns the about page content",
"inputType": [
"Article"
]
},
"grabbing": {
"title": "Grabbing",
"description": "Test RSS and Youtube for grabbing",
"intputType": [
"Thing"
]
}
},
"options": {
"schema": {
"language": {
"title": "Language",
"type": "select",
"enum": [
"fr",
"en"
]
},
"url": {
"title": "URL Advertisement",
"type": "string"
},
"idwidget": {
"title": "ID Twitter widget",
"description": "Create a Twitter timeline widget from the twitter developer portal, then get its ID from its URL and copy it here",
"type": "string"
},
"ganalytics": {
"title": "Google Analytics ID",
"type": "string"
},
"contactform": {
"title": "URL Google Form for contact page",
"description": "Create your own contact form and put the form url in this input",
"type": "string"
}
},
"form": [
"datasources.tweets",
{
"key": "language",
"titleMap": {
"fr": "French",
"en": "English"
}
},
"datasources.youtube",
"datasources.tedxevents",
"datasources.blacklist",
"datasources.about",
"url",
"idwidget",
"ganalytics",
"contactform",
"datasources.grabbing"
]
}
}
}