-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
{
"name": "lfg-hypetrain",
"version": "4.0.0",
"homepage": "http://alexvan.camp/",
"author": "Alex Van Camp <[email protected]>",
"description": "Provides a hype train for donations/subscriptions. Has no view page.",
"repository": {
"type": "git",
"url": "git+https://[email protected]/SupportClass/lfg-hypetrain.git"
},
"license": "MIT",
"scripts": {
"test": "npm run static",
"static": "eslint ."
},
"nodecg": {
"compatibleRange": "^1.0.0",
"dashboardPanels": [
{
"name": "train",
"title": "Hype train",
"width": 2,
"headerColor": "#564573",
"file": "train.html",
"faIcon": "fa-bus"
},
{
"name": "reset-daytotal",
"title": "Reset Day Total",
"width": 3,
"file": "dialogs/reset_daytotal.html",
"dialog": true,
"dialogButtons": [
{
"name": "Yes, reset to zero",
"type": "confirm"
},
{
"name": "No, do not reset",
"type": "dismiss"
}
]
},
{
"name": "settings",
"title": "Change Train Settings",
"width": 3,
"file": "dialogs/train_settings.html",
"dialog": true,
"dialogButtons": [
{
"name": "Apply",
"type": "confirm"
},
{
"name": "Cancel",
"type": "dismiss"
}
]
}
]
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-xo": "^0.17.0",
"eslint-plugin-html": "^2.0.1"
}
}