-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (39 loc) · 1.11 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
{
"name": "edp-clientonly",
"version": "0.0.1",
"description": "A collection of client only widgets, i.e. no server side components",
"author": {
"name": "Duane McKibbin <duane.mckibbin@gmail.com>"
},
"mean": "0.3.3",
"engines": {
"node": "0.10.x",
"npm": "1.4.x"
},
"dependencies": {},
"license": "MIT",
"dashboard" : {
"displayName": "Client Only Widgets",
"enabled" : true,
"module": "server/clientonly",
"widgets" : [
{
"name" : "iFrame",
"description" : "Load an iFrame with an external site",
"directive" : "clientonly-iframe"
},
{
"name" : "Youtube",
"description" : "Load a fullscreen auto-playing YouTube player",
"directive" : "clientonly-youtube"
},
{
"name" : "Image",
"description" : "Display an image fullscreen",
"directive" : "clientonly-image"
}
],
"defaultSettings" : {
}
}
}