-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.66 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "soccerbot",
"version": "1.0.3",
"description": "Library for scraping soccer data from the internet",
"scripts": {
"start": "rimraf dist && tsc-watch --build tsconfig.es5.json --onSuccess 'yarn postbuild'",
"demo": "yarn tsx ./demo.ts",
"build": "rimraf dist && tsc --build tsconfig.es6.json && tsc --build tsconfig.es5.json",
"postbuild": "copyfiles ./package.json ./README.md ./LICENSE ./dist && yarn prepare-dist",
"test": "jest",
"husky:install": "husky",
"prepare-source": "yarn tsx ./scripts/prepare-source.ts",
"prepare-dist": "yarn tsx ./scripts/prepare-dist.ts",
"gpr:setup": "yarn tsx ./scripts/gpr-setup.ts",
"version": "auto-changelog -p && git add CHANGELOG.md",
"postinstall": "yarn prepare-source",
"postversion": "git push && git push --follow-tags",
"publish:beta": "yarn && yarn build && npm publish --folder dist --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \"",
"fix-vulnerabilities": "npx yarn-audit-fix && npx browserslist --update-db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Celtian/soccerbot.git"
},
"author": {
"name": "Dominik Hladík",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Celtian/soccerbot/issues"
},
"homepage": "https://github.com/Celtian/soccerbot#readme",
"engines": {
"node": ">= 12",
"npm": "please-use-yarn"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"auto-changelog": "^2.4.0",
"copyfiles": "^2.4.1",
"eslint": "^9.9.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0",
"tsx": "^4.17.0",
"typescript": "^5.4.5"
},
"keywords": [
"data",
"download",
"football",
"scraper",
"soccer",
"soccerbot"
]
}