forked from codemanki/cloudscraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.75 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
{
"name": "cloudscraper",
"version": "4.4.0",
"description": "Bypasses cloudflare's anti-ddos page",
"main": "index.js",
"engines": {
"node": ">=8"
},
"files": [
"lib/",
"index.js",
"index.d.ts",
"errors.js",
"errors.d.ts"
],
"scripts": {
"test": "npm run lint && npm run test:typescript && nyc --reporter=html --reporter=text mocha",
"test:typescript": "tsc *.ts --noEmit && tsd",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .json --ext .js --ext .ts ."
},
"repository": {
"type": "git",
"url": "https://github.com/codemanki/cloudscraper.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"keywords": [
"cloudflare",
"ddos",
"scrape",
"webscraper",
"anti-bot",
"waf",
"iuam",
"bypass",
"challenge"
],
"author": "Oleksii Sribnyi",
"license": "MIT",
"homepage": "https://github.com/codemanki/cloudscraper",
"dependencies": {
"request-promise": "^4.2.4"
},
"devDependencies": {
"@types/request-promise": "^4.1.44",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"eslint": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"mocha": "^6.1.1",
"nyc": "^14.0.0",
"sinon": "^7.2.4",
"sinon-chai": "^3.3.0",
"tsd": "^0.8.0",
"typescript": "^3.6.3"
},
"peerDependencies": {
"brotli": "^1.3.2",
"request": "^2.88.0"
}
}