-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.18 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.18 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
{
"name": "toonamiaftermath-downlink",
"version": "1.0.0",
"type": "module",
"description": "Lightweight containerized application that fetches Toonami Aftermath channels",
"main": "web/assets/app.js",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "npm run lint:python && npm run lint:js && npm run lint:md",
"lint:python": "ruff check . && black --check .",
"lint:js": "eslint web/assets/*.js",
"lint:md": "markdownlint *.md",
"format": "npm run format:python && npm run format:js",
"format:python": "ruff check --fix . && black .",
"format:js": "prettier --write web/assets/*.js",
"test": "python test_logic.py && python test_integration.py && python test_frontend.py",
"test:unit": "python test_logic.py",
"test:integration": "python test_integration.py",
"test:frontend": "python test_frontend.py",
"test:all": "npm run test:unit && npm run test:integration && npm run test:frontend",
"dev": "python run_dev.py"
},
"keywords": ["iptv", "toonami", "m3u", "xmltv", "docker"],
"author": "",
"license": "MIT",
"devDependencies": {
"eslint": "^9.33.0",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.6.2"
}
}