This repository was archived by the owner on Jun 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 KB
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
{
"name": "@ctrl/cloudflare",
"version": "0.0.0-placeholder",
"description": "Bypass Cloudflare's anti-bot page also known as I'm Under Attack Mode",
"author": "Scott Cooper <[email protected]>",
"license": "MIT",
"repository": "typectrl/cloudflare",
"publishConfig": {
"access": "public"
},
"keywords": [
"cloudflare",
"got",
"bypass",
"jschl_vc",
"scrape",
"challenge",
"typescript"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .js,.ts, .",
"lint:fix": "eslint --fix --ext .js,.ts, .",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --runInBand --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"delay": "^4.3.0",
"got": "^11.0.3"
},
"devDependencies": {
"@pollyjs/adapter-fetch": "4.3.0",
"@pollyjs/adapter-node-http": "4.3.0",
"@pollyjs/adapter-xhr": "4.2.1",
"@pollyjs/core": "4.2.1",
"@pollyjs/persister-fs": "4.2.1",
"@pollyjs/persister-local-storage": "4.2.1",
"@pollyjs/persister-rest": "4.2.1",
"@types/jest": "25.2.1",
"@types/nock": "11.1.0",
"@types/node": "13.13.4",
"@types/tough-cookie": "4.0.0",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"cloudscraper": "4.6.0",
"eslint": "6.8.0",
"eslint-config-xo-space": "0.24.0",
"eslint-config-xo-typescript": "0.28.0",
"eslint-plugin-import": "2.20.2",
"jest": "25.5.3",
"jest-junit": "10.0.0",
"nock": "12.0.3",
"semantic-release": "17.0.7",
"tough-cookie": "4.0.0",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"release": {
"branch": "master"
},
"engines": {
"node": ">=10.19.0"
}
}