-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "got-scraft",
"version": "2.8.0",
"description": "Módulo de scraping con axios + cheerio. Anti-bloqueo para cualquier web.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/natsu-dev01/got-scraft.git"
},
"bugs": {
"url": "https://github.com/natsu-dev01/got-scraft/issues"
},
"homepage": "https://github.com/natsu-dev01/got-scraft#readme",
"keywords": [
"scraper",
"axios",
"cheerio",
"scraping",
"web-scraper",
"anti-blocking",
"proxy-rotator"
],
"type": "commonjs",
"main": "dist/index.js",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"types": "dist/index.d.ts",
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc",
"postbuild": "node -e \"const c=require('crypto'),f=require('fs'),h=c.createHash('sha256').update(f.readFileSync('dist/index.js')).digest('hex');f.writeFileSync('dist/.integrity',h)\"",
"verify": "node scripts/verify.js",
"prepublishOnly": "npm run types && npm run verify",
"prepack": "npm run build",
"postpack": "npm run verify",
"types": "tsc --noEmit",
"test": "node examples/basic.js",
"ci": "npm run clean && npm run types && npm run build && npm run verify",
"prepare": "npm run build"
},
"dependencies": {
"axios": "^1.18.1",
"axios-cookiejar-support": "^5.0.2",
"chardet": "^2.1.0",
"cheerio": "^1.2.0",
"https-proxy-agent": "^7.0.6",
"iconv-lite": "^0.6.3",
"socks-proxy-agent": "^8.0.5",
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"@types/node": "^26.1.0",
"typescript": "^6.0.3"
}
}