From 83f690b1578f6cf52d6742204421d9644596ca4f Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sat, 12 Feb 2022 01:58:14 +0300 Subject: [PATCH] Update package.json --- package.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 665a220308..9efcfb8250 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,21 @@ { "name": "iptv", "scripts": { - "validate": "node scripts/commands/validate.js", - "lint": "npx m3u-linter -c m3u-linter.json", + "db:create": "node scripts/commands/database/create.js", + "db:matrix": "node scripts/commands/database/matrix.js", + "db:update": "node scripts/commands/database/update.js", + "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", "test": "jest --runInBand", "test:commands": "jest --runInBand -- commands", "test:commands:database": "jest --runInBand -- database", "test:commands:playlist": "jest --runInBand -- playlist", - "test:commands:readme": "jest --runInBand -- readme", - "test:commands:stream": "jest --runInBand -- stream" + "test:commands:stream": "jest --runInBand -- stream", + "test:commands:readme": "jest --runInBand -- readme" }, "jest": { "testRegex": "tests/(.*?/)?.*test.js$",