-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
83 lines (83 loc) · 2.08 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
81
82
83
{
"name": "cheerio-httpcli",
"version": "0.8.3",
"description": "http client module with cheerio & iconv(-lite) & promise",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"lint": "eslint lib test example --ext .js --fix"
},
"pre-commit": [
"lint"
],
"typings": "./index.d.ts",
"dependencies": {
"@types/cheerio": "0.22.18",
"@types/rsvp": "^4.0.4",
"async": "^3.2.0",
"cheerio": "^0.22.0",
"colors": "1.4.0",
"foreach": "^2.0.5",
"he": "^1.2.0",
"iconv-lite": "^0.6.3",
"import-fresh": "^3.3.0",
"jschardet": "^3.0.0",
"object-assign": "^4.1.1",
"os-locale": "^5.0.0",
"prettyjson": "^1.2.1",
"request": "^2.88.2",
"rsvp": "^4.8.5",
"tough-cookie": "^2.5.0",
"type-of": "^2.0.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"constants": "^0.0.2",
"dev-null": "^0.1.1",
"eslint": "^7.31.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-prettier-standard": "^3.0.2",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"formidable": "^1.2.2",
"isstream": "^0.1.2",
"jest": "^25.5.4",
"mime-types": "^2.1.31",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"prettier-config-standard": "^1.0.1",
"strip-ansi": "^6.0.0",
"typescript": "^4.3.5",
"uuid-random": "^1.3.2"
},
"peerDependencies": {
"@types/node": "^14.17.5"
},
"repository": {
"type": "git",
"url": "git://github.com/ktty1220/cheerio-httpcli.git"
},
"keywords": [
"cheerio",
"http",
"dom",
"scrape",
"crawler"
],
"author": {
"name": "ktty1220",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md"
}