forked from gabek/node-internet-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@joan7770/node-internet-radio",
"version": "1.0.3",
"description": "Node.js module to get Now Playing information from an internet radio stream.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"test": "tsc -p tsconfig.dev.json && mocha --timeout 10000 --recursive './dist/test/**/*.js'",
"build": "tsc -p tsconfig.json"
},
"author": "Gabe Kangas",
"contributors": [
{
"name": "Joan Marin-Romero",
"url": "https://github.com/joan7770/"
}
],
"keywords": [
"shoutcast",
"radio",
"icecast",
"icy",
"internet radio"
],
"repository": {
"type": "git",
"url": "https://github.com/joan7770/node-internet-radio.git"
},
"license": "MIT",
"dependencies": {
"axios": "^1.5.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.5",
"@types/xml2js": "^0.4.12",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=16.x"
}
}