iptv/package.json

49 lines
1.7 KiB
JSON
Raw Normal View History

2018-11-16 00:41:15 +01:00
{
"name": "iptv",
"scripts": {
2022-02-15 07:26:43 +01:00
"act:auto-update": "act workflow_dispatch -W .github/workflows/auto-update.yml --artifact-server-path=.artifacts",
2022-02-14 10:00:10 +01:00
"act:check": "act pull_request -W .github/workflows/check.yml",
2022-03-23 18:04:57 +01:00
"api:load": "./scripts/commands/api/load.sh",
2022-08-15 01:22:51 +02:00
"db:clear": "node scripts/commands/database/clear.js",
2022-02-11 23:58:14 +01:00
"db:create": "node scripts/commands/database/create.js",
"db:matrix": "node scripts/commands/database/matrix.js",
"db:update": "node scripts/commands/database/update.js",
2022-02-12 23:40:34 +01:00
"db:export": "node scripts/commands/database/export.js",
2022-02-11 23:58:14 +01:00
"cluster:load": "node scripts/commands/cluster/load.js",
"playlist:validate": "node scripts/commands/playlist/validate.js",
"playlist:generate": "node scripts/commands/playlist/generate.js",
"playlist:update": "node scripts/commands/playlist/update.js",
"playlist:lint": "npx m3u-linter -c m3u-linter.json",
"readme:update": "node scripts/commands/readme/update.js",
2022-02-12 01:12:04 +01:00
"test": "jest --runInBand"
2021-12-12 05:09:35 +01:00
},
"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-15 00:53:12 +01:00
"@alex_neo/jest-expect-message": "^1.0.5",
2022-02-08 05:30:26 +01:00
"chalk": "^4.1.2",
"commander": "^8.3.0",
2021-12-12 05:09:35 +01:00
"dayjs": "^1.10.7",
2022-02-05 01:03:39 +01:00
"fs-extra": "^10.0.0",
2022-06-09 19:52:01 +02:00
"iptv-checker": "^0.24.5",
2022-08-15 01:22:51 +02:00
"iptv-playlist-parser": "^0.12.1",
2022-02-15 00:53:12 +01:00
"jest": "^27.5.1",
"jest-expect-message": "^1.0.2",
2021-12-12 05:09:35 +01:00
"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",
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",
2022-02-15 00:55:46 +01:00
"signale": "^1.4.0",
"transliteration": "^2.2.0"
2018-11-16 00:41:15 +01:00
}
}