forked from iptv-org/database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 KB
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
{
"name": "@iptv-org/database",
"scripts": {
"act:check": "act pull_request -W .github/workflows/check.yml",
"act:update": "act workflow_dispatch -W .github/workflows/update.yml",
"act:deploy": "act push -W .github/workflows/deploy.yml",
"db:validate": "tsx scripts/commands/db/validate.ts",
"db:export": "tsx scripts/commands/db/export.ts",
"db:update": "tsx scripts/commands/db/update.ts",
"lint": "npx eslint \"{scripts,tests}/**/*.{ts,js}\"",
"test": "jest --runInBand",
"prepare": "husky"
},
"private": true,
"author": "Arhey",
"jest": {
"transform": {
"^.+\\.(ts|js)$": "ts-jest"
},
"testRegex": "tests/(.*?/)?.*test.(js|ts)$"
},
"dependencies": {
"@eslint/js": "^9.16.0",
"@freearhey/core": "^0.8.2",
"@joi/date": "^2.1.0",
"@json2csv/formatters": "^7.0.3",
"@json2csv/node": "^7.0.3",
"@json2csv/transforms": "^7.0.3",
"@octokit/core": "^6.1.5",
"@octokit/plugin-paginate-rest": "^12.0.0",
"@octokit/plugin-rest-endpoint-methods": "^7.1.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"csvtojson": "^2.0.10",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^11.2.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"joi": "^17.13.3",
"ts-jest": "^29.1.1",
"tsx": "^4.10.5"
}
}