-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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
{
"name": "lfg-twitchapi",
"version": "2.0.0",
"description": "Lets other bundles easily query the Twitch API on behalf of a logged in user.",
"homepage": "http://supportclass.net/",
"author": {
"name": "Alex Van Camp",
"email": "[email protected]",
"url": "http://alexvan.camp"
},
"files": [
"dashboard",
"graphics",
"extension.js",
"extension"
],
"keywords": [
"twitch",
"api",
"nodecg-bundle"
],
"nodecg": {
"compatibleRange": "~0.9.0",
"dashboardPanels": [
{
"name": "status",
"title": "Twitch API Status",
"width": 2,
"file": "status.html",
"headerColor": "#564573"
}
]
},
"repository": {
"type": "git",
"url": "https://[email protected]/SupportClass/lfg-twitchapi.git"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^2.11.1",
"eslint-config-xo": "^0.14.1",
"eslint-plugin-babel": "^3.2.0"
},
"scripts": {
"static": "eslint **/*.js",
"test": "npm run static"
},
"dependencies": {
"request-promise": "^3.0.0"
}
}