-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 924 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 924 Bytes
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
{
"name": "eztv-crawler",
"version": "1.3.6",
"description": "A promised based node module to scrape TV shows, episodes and torrent info from EZTV.",
"homepage": "https://github.com/codeit-ninja/eztv-crawler",
"keywords": [
"eztv",
"eztv.wf",
"torrent",
"api",
"crawler"
],
"private": false,
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --watch src src/test.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"install": "npm run build",
"test": "jest"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/jest": "^28.1.6",
"@types/node": "^17.0.23",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"bytes": "^3.1.2",
"cheerio": "^1.0.0-rc.10",
"cross-fetch": "^3.1.5"
}
}