iptv/package.json

42 lines
1004 B
JSON
Raw Normal View History

2018-11-16 00:41:15 +01:00
{
"name": "iptv",
"scripts": {
2021-12-12 05:09:35 +01:00
"validate": "node scripts/commands/validate.js",
"lint": "npx m3u-linter -c m3u-linter.json",
"test": "jest --runInBand"
},
"jest": {
2022-02-07 00:27:15 +01:00
"testRegex": "tests/(.*?/)?.*test.js$",
"setupFilesAfterEnv": [
"@alex_neo/jest-expect-message"
]
2018-11-16 00:41:15 +01:00
},
2020-03-14 15:09:02 +01:00
"author": "Arhey",
2018-11-23 23:05:24 +01:00
"private": true,
2019-09-29 17:15:55 +02:00
"license": "MIT",
2021-03-06 19:14:09 +01:00
"dependencies": {
2022-02-08 05:30:26 +01:00
"chalk": "^4.1.2",
2021-12-12 05:09:35 +01:00
"chunk": "^0.0.3",
2022-02-08 05:30:26 +01:00
"commander": "^8.3.0",
2021-12-12 05:09:35 +01:00
"crypto": "^1.0.1",
"dayjs": "^1.10.7",
2022-02-05 01:03:39 +01:00
"fs-extra": "^10.0.0",
2021-12-12 05:09:35 +01:00
"iptv-checker": "^0.22.0",
"iptv-playlist-parser": "^0.10.2",
"jest": "^27.4.3",
"lodash": "^4.17.21",
2021-12-14 22:39:52 +01:00
"m3u-linter": "^0.3.0",
2021-01-19 23:06:15 +01:00
"markdown-include": "^0.4.3",
2021-12-12 05:09:35 +01:00
"mz": "^2.7.0",
2022-02-07 23:11:47 +01:00
"natural-orderby": "^2.0.3",
2021-12-12 05:09:35 +01:00
"nedb-promises": "^5.0.2",
"normalize-url": "^6.1.0",
2021-12-12 05:09:35 +01:00
"transliteration": "^2.2.0",
"winston": "^3.3.3"
2022-02-07 00:27:15 +01:00
},
"devDependencies": {
"@alex_neo/jest-expect-message": "^1.0.5",
"jest-expect-message": "^1.0.2"
2018-11-16 00:41:15 +01:00
}
}