This repository was archived by the owner on Sep 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.37 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "lfg-sounds",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "https://github.com/SupportClass/lfg-sounds.git"
},
"scripts": {
"test": "npm run static",
"static": "eslint client/lfg-soundplayer.html dashboard/**/*.js dashboard/**/*.html extension/**/*.js"
},
"homepage": "http://supportclass.net",
"author": "Alex Van Camp <email@alexvan.camp>",
"description": "Manage and play sound files",
"license": "MIT",
"nodecg": {
"uploads": {
"enabled": true,
"allowedTypes": [
"mp3",
"ogg"
]
},
"compatibleRange": "~0.7.2",
"dashboardPanels": [
{
"name": "manage-files",
"title": "Sounds",
"width": 2,
"headerColor": "#564573",
"file": "panel.html",
"faIcon": "fa-volume-up"
},
{
"name": "edit-sounds",
"title": "Edit Sounds",
"width": 4,
"file": "edit-sounds.html",
"faIcon": "fa-volume-up",
"dialog": true,
"dialogButtons": [
{
"name": "done",
"type": "dismiss"
}
]
}
]
},
"devDependencies": {
"babel-eslint": "^6.0.2",
"eslint": "^2.6.0",
"eslint-config-xo": "^0.12.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-html": "^1.4.0"
},
"dependencies": {
"express": "^4.13.4"
}
}