-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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
{
"name": "football-results",
"version": "1.0.0",
"author": "Jayslen Rojas Serrano",
"main": "dist/index.js",
"description": "A open source football API where the data are extract from Fotmob. The project is not intent to get beneficts with the data, its just for educational purpose and shared an API with dozens of people who wants to practice.",
"keywords": [
"nodejs",
"typescript",
"REST",
"API"
],
"type": "module",
"license": "ISC",
"private": true,
"bin": {
"scrape": "./dist/scraper/main.js"
},
"scripts": {
"dev/scraper": "bun ./src/scraper/main.ts",
"build/scraper": "tsc -p tsconfig.scraper.json",
"scraper": "bun ./dist/scraper/main.js",
"test/file": "bun ./debug/test.ts",
"create-db": "bun ./create_db.script.ts",
"lint/scraper": "npx eslint ./src/scraper | tee ./debug/lint-results.txt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node22": "22.0.2",
"@types/node": "24.10.0",
"@typescript-eslint/eslint-plugin": "8.46.3",
"@typescript-eslint/parser": "8.46.3",
"eslint": "^10.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"globals": "16.5.0",
"prettier": "3.6.2",
"tsx": "4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"@types/bun": "latest"
},
"workspaces": [
"src/*"
]
}