-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"name": "@hyurl/fetch",
"version": "1.1.3",
"description": "A Node.js fetch tool that imitates browser behavior and ready for crawlers.",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"pretest": "tsc",
"test": "mocha --require ts-node/register --exit test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyurl/fetch.git"
},
"keywords": [
"fetch",
"crawler"
],
"author": "Ayon Lee <i@hyurl.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyurl/fetch/issues"
},
"homepage": "https://github.com/hyurl/fetch#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.1",
"async-stream-iterator": "^1.0.3",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"mocha": "^8.1.3",
"proxy": "^1.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@hyurl/utils": "^0.2.8",
"@types/backoff": "^2.5.1",
"@types/mime-types": "^2.1.0",
"@types/qs": "^6.9.5",
"axios": "^0.20.0",
"backoff": "^2.5.0",
"better-lookup": "^1.1.3",
"https-proxy-agent": "^5.0.0",
"iconv-lite": "^0.6.2",
"jschardet": "^2.2.1",
"jschardet-eastasia": "^1.4.1",
"lodash": "^4.17.20",
"mime-types": "^2.1.27",
"moment": "^2.28.0",
"os-locale": "^5.0.0",
"qs": "^6.9.4",
"sfn-cookie": "^1.0.7",
"xml2js": "^0.4.23"
},
"engines": {
"node": ">=10"
}
}