iptv-checker
Version:
Node.js CLI tool for checking links in IPTV playlists
69 lines (68 loc) • 1.59 kB
JSON
{
"name": "iptv-checker",
"version": "0.24.5",
"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/**/*.js ./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": {
"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.11.0",
"jest": "^27.0.6",
"lodash.chunk": "^4.2.0",
"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"
]
}
}