-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
43 lines (43 loc) · 1023 Bytes
/
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
{
"name": "humanoid-js",
"version": "1.0.1",
"description": "Node.js package to bypass WAF anti-bot JavaScript challenges",
"repository": {
"type": "git",
"url": "https://github.com/evyatarmeged/Humanoid"
},
"main": "index.js",
"scripts": {
"lint": "eslint index.js src/*.js",
"test": "jest tests",
"coverage": "jest --collectCoverageFrom=tests/**.js --coverage src"
},
"keywords": [
"bot",
"WAF",
"bypass",
"cloudflare",
"anti-bot",
"scrape",
"scraping",
"protected-pages",
"captcha"
],
"author": "Evyatar Meged",
"homepage": "https://github.com/evyatarmeged/Humanoid",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"iltorb": "^2.4.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"safe-eval": "^0.4.1",
"url-parse": "^1.4.3"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-jest": "^21.25.1",
"jest": "^23.6.0"
}
}