forked from gabek/node-internet-radio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 771 Bytes
/
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
{
"name": "node-internet-radio",
"version": "0.2.1",
"description": "Node.js module to get Now Playing information from an internet radio stream.",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000"
},
"author": "Gabe Kangas",
"bugs": {
"url": "https://github.com/gabek/node-internet-radio/issues",
"email": "[email protected]"
},
"keywords": [
"shoutcast",
"radio",
"icecast",
"icy",
"internet radio"
],
"repository": {
"type": "git",
"url": "https://github.com/gabek/node-internet-radio.git"
},
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"request": "^2.58.0",
"xml2js": "^0.4.9"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^6.2.0"
}
}