-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.65 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
80
81
82
83
84
85
86
87
{
"name": "node-csfd-api",
"version": "2.10.2",
"description": "ČSFD API in JavaScript. Amazing NPM library for scrapping csfd.cz :)",
"main": "index.js",
"author": "BART! <[email protected]>",
"scripts": {
"start": "tsc -w",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "npm-prepare-dist -s postinstall -s prepare",
"tsc": "tsc",
"demo": "tsx demo",
"lint": "eslint ./src/**/**/* --fix",
"test": "vitest",
"test:coverage": "yarn test run --coverage",
"publish:next": "yarn && yarn build && yarn test:coverage && cd dist && npm publish --tag next",
"postversion": "git push && git push --follow-tags",
"release:beta": "npm version preminor --preid=beta -m \"chore(update): prelease %s β\"",
"prerelease:beta": "npm version prerelease --preid=beta -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 💥\"",
"prepare": "husky"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/ui": "2.1.8",
"eslint": "^9.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.21.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-prepare-dist": "^0.5.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"repository": {
"url": "git+https://github.com/bartholomej/node-csfd-api.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/node-csfd-api/issues"
},
"homepage": "https://github.com/bartholomej/node-csfd-api#readme",
"keywords": [
"csfd",
"čsfd",
"ratings",
"movies",
"films",
"nodejs",
"node",
"typescript",
"scraper",
"parser",
"api"
],
"engines": {
"node": ">= 18"
},
"license": "MIT",
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}