-
Notifications
You must be signed in to change notification settings - Fork 877
/
package.json
80 lines (80 loc) · 1.84 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
{
"name": "crawler",
"version": "2.0.2",
"description": "Crawler is a ready-to-use web spider that works with proxies, asynchrony, rate limit, configurable request pools, jQuery, and HTTP/2 support.",
"repository": {
"type": "git",
"url": "https://github.com/bda-research/node-crawler.git"
},
"exports": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test ava",
"cover": "NODE_ENV=test c8 ava"
},
"engines": {
"node": ">=18"
},
"type": "module",
"keywords": [
"javascript",
"crawler",
"spider",
"scraper",
"scraping",
"jquery",
"nodejs",
"http",
"https",
"http2",
"got",
"request",
"url",
"network",
"gzip"
],
"license": "MIT",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"got": "^14.4.2",
"hpagent": "^1.2.0",
"http2-wrapper": "^2.2.1",
"iconv-lite": "^0.6.3",
"seenreq": "^3.0.0",
"tslog": "^4.9.3"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/got": "^9.6.12",
"@types/node": "^20.14.13",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^9.8.0",
"globals": "^15.8.0",
"nock": "^13.5.4",
"sinon": "^18.0.0",
"tough-cookie": "^4.1.4",
"tsx": "^4.16.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"ava": {
"files": [
"test/*.js",
"!test/*test.js"
],
"timeout": "20s",
"extensions": {
"js": true
},
"verbose": true
},
"c8": {
"reporter": [
"lcov",
"html",
"text"
],
"clean": true
}
}