This repository has been archived by the owner on Sep 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.17 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hinet-hichannel-taiwan-radio",
"version": "4.0.0",
"description": "取得 HiNet hichannel 台灣電台的 m3u8 串流網址、節目表和其他資訊!",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist",
"examples"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix",
"example": "node ./examples/all_demo.js"
},
"repository": {
"type": "git",
"url": "https://github.com/GoneToneStudio/node-hinet-hichannel-taiwan-radio.git"
},
"keywords": [
"radio",
"電台",
"hinet",
"hichannel",
"taiwan",
"node",
"m3u8",
"live",
"stream"
],
"author": {
"name": "張文相 Zhang Wenxiang (旋風之音 GoneTone)",
"email": "p29022716@gmail.com",
"url": "https://github.com/GoneTone"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GoneToneStudio/node-hinet-hichannel-taiwan-radio/issues"
},
"homepage": "https://github.com/GoneToneStudio/node-hinet-hichannel-taiwan-radio",
"dependencies": {
"axios": "^0.27.2",
"https-proxy-agent": "^5.0.1",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.40",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"dotenv": "^16.0.1",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}