-
Notifications
You must be signed in to change notification settings - Fork 877
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "crawler",
"version": "2.0.0-beta.5",
"description": "New TypeScript Crawler Test version",
"repository": {
"type": "git",
"url": "https://github.com/bda-research/node-crawler.git"
},
"exports": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "npx mocha --timeout=15000 tests/*.test.js"
},
"engines": {
"node": ">=18.20.0"
},
"type": "module",
"keywords": [],
"license": "MIT",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"got": "^13.0.0",
"hpagent": "^1.2.0",
"http2-wrapper": "^2.2.1",
"iconv-lite": "^0.6.3",
"seenreq": "^3.0.0",
"tslog": "^4.9.2"
},
"devDependencies": {
"@types/got": "^9.6.12",
"@types/node": "^20.10.6",
"chai": "^5.1.0",
"mocha": "^10.4.0",
"mocha-testdata": "^1.2.0",
"nock": "^13.5.4",
"sinon": "^17.0.1",
"tough-cookie": "^4.1.4",
"tsx": "^4.7.3",
"typescript": "^5.4.5"
}
}