-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
68 lines (68 loc) · 1.55 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
{
"name": "iptv-checker",
"version": "0.28.0",
"description": "Node.js CLI tool for checking links in IPTV playlists",
"main": "src/index.js",
"preferGlobal": true,
"homepage": "https://github.com/freearhey/iptv-checker",
"bin": {
"iptv-checker": "bin/iptv-checker.js"
},
"scripts": {
"start": "node src/index.js",
"lint": "npx eslint \"./{src,test}/**/*.js\"",
"test": "npx jest",
"prePush": "npm-run-all -p lint test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/freearhey/iptv-checker.git"
},
"author": "Arhey",
"license": "MIT",
"keywords": [
"iptv",
"m3u",
"m3u8",
"checker"
],
"dependencies": {
"async": "^3.2.4",
"axios": "^0.21.1",
"axios-curlirize": "^1.3.7",
"colors": "^1.4.0",
"command-exists": "^1.2.9",
"commander": "^2.20.0",
"dateformat": "^3.0.3",
"get-stdin": "^7.0.0",
"iptv-playlist-parser": "^0.12.0",
"jest": "^27.0.6",
"progress": "^2.0.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"del": "^5.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^3.1.2",
"mkdirp": "^1.0.4",
"prettier": "^2.0.4"
},
"engines": {
"node": ">=10.0.0"
},
"ava": {
"failFast": true,
"concurrency": 3,
"timeout": "10m",
"files": [
"test/*.test.js"
]
}
}